QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#546950#8022. WalkerwzxtslAC ✓65ms3972kbC++171.2kb2024-09-04 16:08:582024-09-04 16:08:58

Judging History

你现在查看的是最新测评结果

  • [2024-09-04 16:08:58]
  • 评测
  • 测评结果:AC
  • 用时:65ms
  • 内存:3972kb
  • [2024-09-04 16:08:58]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define int long long
#define double long double
#define PII pair<int,int>
#define For(i,a,n) for(int i=a;i<=n;i++)
#define rof(i,n,a) for(int i=n;i>=a;i--)
#define eps 1e-9
const int N=505,M=505;//点,边 
const int mod=998244353,INF=0x3f3f3f3f;//1e9+7,int
double n,p1,v1,p2,v2;
double ok(double t){
    double d1=max((t-p1/v1)*v1/2,(t-2*p1/v1)*v1);
    double d2=max((t-(n-p2)/v2)/2*v2,(t-2*(n-p2)/v2)*v2);
    if(d1<=0||d2<=0) return false;
    if(d1+d2>=p2-p1) return true;
    else return false;
}
void solve(){
    cin>>n>>p1>>v1>>p2>>v2;
    if(p1>p2){
        swap(p1,p2);
        swap(v1,v2);
    }
    double t=0;
    t=min((min(n-p2,p2)+n)/v2,(min(n-p1,p1)+n)/v1);
    t=min(t,max((n-p1)/v1,(p2/v2)));
    double l=0;
    double r=1e18;
    double mid=0;
    while(r-l>eps){
        mid=(l+r)/2;
        if(ok(mid)){
            t=min(t,mid);
            r=mid;
        }else{
            l=mid;
        }
    }
    cout<<fixed<<setprecision(16)<<endl;
    cout<<t<<endl;
}
signed main(){
	int T=1;
	cin>>T;
	while(T--)
	{
		solve();
    }
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3864kb

input:

2
10000.0 1.0 0.001 9999.0 0.001
4306.063 4079.874 0.607 1033.423 0.847

output:


5001000.0000000001973604

3827.8370013756464532

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 0ms
memory: 3852kb

input:

1
10.0 1.0 10.0 9.0 0.1

output:


1.1000000000000000

result:

ok found '1.1000000', expected '1.1000000', error '0.0000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

1
10.0 8.0 10.0 9.0 0.1

output:


1.2000000000000000

result:

ok found '1.2000000', expected '1.2000000', error '0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

1
10.0 8.0 0.1 9.0 10

output:


1.1000000000000000

result:

ok found '1.1000000', expected '1.1000000', error '0.0000000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

1
10.0 2.0 0.1 3.0 10

output:


1.3000000000000000

result:

ok found '1.3000000', expected '1.3000000', error '0.0000000'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1
10.0 9.0 0.1 8.0 10.0

output:


1.2000000000000000

result:

ok found '1.2000000', expected '1.2000000', error '0.0000000'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3908kb

input:

1
10.0 4.0 0.1 6.0 0.1

output:


60.0000000000000000

result:

ok found '60.0000000', expected '60.0000000', error '0.0000000'

Test #8:

score: 0
Accepted
time: 0ms
memory: 3896kb

input:

1
10.0 4.5 0.1 6.0 0.1

output:


57.5000000000732137

result:

ok found '57.5000000', expected '57.5000000', error '0.0000000'

Test #9:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1
10.0 1.0 1.0 8.0 1.0

output:


6.5000000005210496

result:

ok found '6.5000000', expected '6.5000000', error '0.0000000'

Test #10:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

1
10.0 3.0 2.0 7.0 1.0

output:


4.6000000002320393

result:

ok found '4.6000000', expected '4.6000000', error '0.0000000'

Test #11:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1
10.0 6.0 2.0 7.0 1.0

output:


3.6666666671677187

result:

ok found '3.6666667', expected '3.6666667', error '0.0000000'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1
10.0 1.0 1.0 9.0 1.0

output:


6.0000000002324170

result:

ok found '6.0000000', expected '6.0000000', error '0.0000000'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3860kb

input:

1
10000.0 1.0 0.001 1.0 0.001

output:


9999000.0000000000000000

result:

ok found '9999000.0000000', expected '9999000.0000000', error '0.0000000'

Test #14:

score: 0
Accepted
time: 0ms
memory: 3896kb

input:

1
10.0 5.0 1.0 5.0 1.5

output:


5.0000000000000000

result:

ok found '5.0000000', expected '5.0000000', error '0.0000000'

Test #15:

score: 0
Accepted
time: 44ms
memory: 3856kb

input:

10000
4306.063 4079.874 0.607 1033.423 0.847
8967.336 8026.500 0.398 283.019 0.876
9568.147 4481.616 0.405 800.114 0.684
9867.264 6184.040 0.312 9853.164 0.641
3344.364 730.612 0.539 1305.868 0.947
9336.180 3672.113 0.773 432.686 0.312
1468.243 59.762 0.840 1438.446 0.827
1355.133 1096.314 0.373 109...

output:


3827.8370013756464532

7999.3649921514001697

12559.3358024691964063

15371.5507020280811226

2637.6985195154939738

9931.0415175382146611

934.4943011398258518

2939.1796246648793562

5754.0328898748160720

2847.4271570017459101

10975.3236282194848830

2180.2786069651741294

23747.045454545454546...

result:

ok 10000 numbers

Test #16:

score: 0
Accepted
time: 48ms
memory: 3908kb

input:

10000
2030.871 179.860 3.339 226.899 5.608
4013.779 5.483 5.886 2655.711 6.577
2948.361 1567.653 5.641 1789.794 4.572
1539.149 427.003 6.957 936.942 3.945
1689.115 359.356 1.192 742.725 8.260
2381.830 1935.542 7.989 1021.393 9.984
2247.138 2095.797 6.333 411.074 8.188
4141.126 403.006 1.882 3801.489...

output:


321.6783166912330182

364.0773884138822130

310.4378732994572400

186.4660395322961764

294.4116222760290557

178.5241121642505819

193.4820604649528073

556.8327911519233969

1413.5636950286806884

403.2302259891006298

743.5915085817768360

396.6288209606986900

209.1301147141573230

611.28506559...

result:

ok 10000 numbers

Test #17:

score: 0
Accepted
time: 54ms
memory: 3956kb

input:

10000
7410.440 722.688 93.147 7123.335 52.404
9827.385 9318.243 31.214 4329.764 21.512
2798.254 2287.444 57.751 2083.954 59.592
4104.975 2145.078 39.914 2322.922 97.161
4508.679 124.615 97.618 557.945 7.666
6167.965 5462.271 20.812 2289.103 40.872
1863.334 130.781 49.124 590.990 21.907
5210.765 2592...

output:


57.8507396039482491

201.2720342140585143

34.9703651503109252

49.1029964423510548

47.4635210719334549

138.8941888092225590

35.2689723963846592

38.4675708166687014

75.2072899497980636

101.6259555906804262

25.9441884645238786

21.0079176563737134

82.0515902408367562

99.5775285216237663

27...

result:

ok 10000 numbers

Test #18:

score: 0
Accepted
time: 59ms
memory: 3912kb

input:

10000
1825.114 831.869 305.812 812.010 435.352
6204.189 975.074 324.820 3197.714 486.818
6707.302 6252.291 617.962 3000.007 202.516
3950.818 1276.312 795.686 1233.053 192.740
7727.851 7014.938 925.386 5422.995 990.049
1828.700 1059.091 897.131 796.832 289.580
4364.009 801.827 108.050 138.855 698.515...

output:


2.7201973761657489

9.9889753958829208

11.5902159032432415

6.3974940341793738

5.4775016186683248

2.7516817462067113

6.4463383034007860

0.9512955439100383

6.0518750191849270

2.5075291577061598

4.3790838578331950

11.4347564330914626

3.9997969569336604

54.4577155482205127

36.4774247904150...

result:

ok 10000 numbers

Test #19:

score: 0
Accepted
time: 44ms
memory: 3908kb

input:

10000
1446.181 378.832 0.559 1049.957 0.581
8184.065 2784.411 0.567 5802.192 0.817
7897.823 922.465 0.430 2717.563 0.164
6798.147 101.965 0.861 968.021 0.766
2665.200 708.829 0.367 829.609 0.812
8278.765 4043.152 0.338 3510.780 0.746
9966.278 5152.481 0.628 9362.702 0.481
7225.976 4372.737 0.713 451...

output:


1857.2859649125277388

8093.8193641624217674

16570.5060975609756095

7611.1305483035058947

2363.0025445300632077

11961.9881656804733732

10054.8597484280426935

6132.8709677422426410

1324.9770190419357576

8439.4677685950413224

4670.2766155277373459

1876.1061359867330018

6135.132241077109450...

result:

ok 10000 numbers

Test #20:

score: 0
Accepted
time: 40ms
memory: 3860kb

input:

10000
137.466 34.152 5.369 35.774 9.633
864.049 460.741 7.827 20.803 6.253
7772.734 4848.655 5.826 7486.943 2.751
51.039 18.541 3.274 4.546 4.781
2738.460 1134.632 7.353 190.640 0.845
2650.223 2047.426 7.127 2596.012 8.020
7144.450 4170.830 1.091 6484.852 6.327
4486.617 2202.655 2.404 53.792 5.306
9...

output:


10.5566282576529109

67.2009049331848837

994.7382591808401167

9.7245346161890818

449.1890705053851963

287.2773958190205187

1233.4515568199778727

855.7122125895212966

2917.1817029368265373

663.2016369047619048

738.7614571097752920

624.3502280798454409

657.3975210275848545

267.80663388137...

result:

ok 10000 numbers

Test #21:

score: 0
Accepted
time: 54ms
memory: 3912kb

input:

10000
6755.269 1412.870 9.877 2922.765 69.970
5809.463 1729.065 28.186 157.659 45.884
6302.936 3.007 88.634 2503.641 71.482
9471.893 5335.396 60.750 2351.889 46.506
1852.860 485.692 31.691 792.772 0.251
3760.662 837.606 43.039 302.039 3.592
5202.253 1919.974 87.263 790.867 91.590
4393.623 1307.664 8...

output:


138.3169072459625554

123.1759218899834365

53.1503735213074660

116.1277690759458709

73.7923069641223060

92.1324655278454982

37.6136392291499421

86.2723400365630713

320.4975966420689188

1.9902870282976697

112.7438900567179390

90.4635627840083233

229.1529436231607771

186.1792362916441047
...

result:

ok 10000 numbers

Test #22:

score: 0
Accepted
time: 51ms
memory: 3836kb

input:

10000
4561.066 3561.125 347.570 22.417 384.727
2245.766 1947.734 373.385 1583.280 767.308
9178.623 6896.214 129.852 8552.670 569.435
4123.959 3302.922 845.031 3107.197 536.921
9684.190 1373.220 417.970 6785.207 582.747
3908.264 3810.105 794.444 1678.987 885.395
1218.900 883.339 486.245 432.328 689.8...

output:


7.3114140788473735

2.2882756362216436

17.2180775681157639

3.9086400380577754

13.5448037521101458

2.5598765379859095

1.4198353928471708

5.3973025475119472

13.3497416018145666

0.2130652371113714

54.1352929166796706

6.1649761174261829

20.9924590854995088

4.3254401474008748

50.74869681019...

result:

ok 10000 numbers

Test #23:

score: 0
Accepted
time: 48ms
memory: 3912kb

input:

10000
8829.410 5837.483 0.025 6497.985 90.734
8571.821 4446.483 0.444 7096.946 443.881
4885.562 4543.189 0.577 4181.326 689.854
1773.759 1089.873 0.250 584.675 17.809
9380.505 2300.466 0.662 4771.696 763.116
8097.494 1695.329 0.228 3721.817 261.367
2610.676 602.316 0.789 885.868 885.685
2783.702 221...

output:


123.0060947384662861

22.6337599491755673

8.1028710422785111

132.4293334830703577

18.3318315957207030

45.2211296758963450

3.9478415012109271

7.1355181830073909

138.2265143905315107

14.8960995210153006

20.8294551087718043

80.1683240580239029

2.9149411775595398

4.0137527576491886

0.34292...

result:

ok 10000 numbers

Test #24:

score: 0
Accepted
time: 48ms
memory: 3912kb

input:

10000
2249.884 511.364 7.379 1791.261 521.922
3286.767 1256.282 2.130 1011.930 750.770
6649.538 3604.051 3.574 523.009 443.247
259.924 246.031 4.477 182.827 131.182
6256.893 3619.190 5.039 655.815 832.185
201.818 174.860 1.245 73.051 235.173
967.278 181.624 9.270 775.260 824.343
7585.518 3383.271 9....

output:


5.1894861684312982

5.7257175966008232

16.1818286418182187

2.5691100913235047

8.3066962274013591

1.1687948871681698

1.4063272205865762

12.4310169522858780

25.3811249500326103

4.5045977802955850

11.2413296441428888

30.9834258842699220

4.3419418015084025

6.8485845281834299

48.94944675810...

result:

ok 10000 numbers

Test #25:

score: 0
Accepted
time: 40ms
memory: 3964kb

input:

10000
7243.562 6060.438 24.630 1457.089 534.665
9598.725 8617.536 48.786 2412.051 591.887
372.483 48.994 74.031 190.511 168.965
8820.924 8138.195 3.707 8383.440 784.084
677.119 288.434 24.515 569.815 987.734
3351.665 3123.984 41.357 1456.155 672.889
906.765 117.449 15.457 536.818 123.740
4324.663 36...

output:


16.2730887565110864

20.1121018327935371

2.0849391384819725

11.8079287423286281

0.7941642183016885

6.7678769553624410

9.2644816065732726

13.5025272400504731

14.3931562263251263

11.1027957324195935

15.5042346243358770

69.7253075066762362

12.4881770817906326

58.7459715076192463

13.796161...

result:

ok 10000 numbers

Test #26:

score: 0
Accepted
time: 56ms
memory: 3892kb

input:

10000
4273.971 3319.964 412.722 3084.631 0.371
9486.875 2325.044 247.106 5565.693 0.123
6541.208 5974.260 668.802 3918.890 0.616
6617.241 3120.168 259.521 975.622 0.981
6747.529 982.828 617.311 4159.620 0.163
8490.455 5235.975 261.806 4759.763 0.927
4527.356 634.417 962.224 1951.397 0.815
2843.028 2...

output:


12.6670688744481758

47.8010206146350149

10.6281919013400080

37.5206977470031327

12.5226295983709994

44.8612140287082802

5.3644193036132959

7.3879658686372762

8.2277919307846484

111.0668174804116916

6.3279229444161390

13.9915294273269273

8.4491530284490670

0.1947831659858541

2.45208692...

result:

ok 10000 numbers

Test #27:

score: 0
Accepted
time: 48ms
memory: 3836kb

input:

10000
6484.027 2686.920 302.591 1902.202 5.835
8201.810 2963.766 412.892 5729.465 8.036
3020.670 211.504 439.339 537.532 8.528
8669.591 8286.396 498.327 1961.743 5.685
7398.433 578.851 211.801 823.970 5.493
689.984 639.947 655.884 425.484 5.438
5785.008 377.037 305.174 5009.622 2.055
3647.568 1584.3...

output:


30.3080626984940068

27.0423645892872712

7.3569020733419979

18.1663566292815762

37.6640525776554407

1.1282803056638064

20.1919069121222647

7.7113711433047933

1249.5564480142793395

10.9603660045587756

2.9264586667289654

3.7956885092904211

24.8067445311779453

20.5595536943419363

8.566136...

result:

ok 10000 numbers

Test #28:

score: 0
Accepted
time: 52ms
memory: 3960kb

input:

10000
79.843 18.768 777.911 61.283 24.730
8883.631 1902.553 596.364 1892.997 74.484
5024.116 4303.922 72.518 3737.238 46.887
7908.447 2754.154 544.654 5008.230 43.086
7786.323 3377.984 451.639 592.947 59.782
3767.995 1230.199 61.043 2617.153 12.472
2627.587 2190.160 278.163 2257.870 66.853
2168.924 ...

output:


0.1267638585905071

18.0865779959890268

59.3497062798201826

19.5768341001810324

20.6705630005889397

81.8798879478400472

7.8736568134807809

3.7719542673292925

14.8998679989609072

19.7020561327667194

28.2235496601023627

6.4513094937205309

10.0548873410584739

44.2342739958093710

9.8275562...

result:

ok 10000 numbers

Test #29:

score: 0
Accepted
time: 65ms
memory: 3856kb

input:

10000
9542.809 5274.877 0.956 5222.401 0.731
4232.306 2434.616 0.649 2460.142 0.916
1873.176 897.834 0.350 1697.991 0.195
4744.725 441.897 0.658 2894.314 0.937
5228.307 5108.684 0.485 3294.551 0.055
5478.150 4412.917 0.525 1664.207 0.234
4102.027 2600.457 0.078 873.996 0.568
431.474 170.484 0.627 40...

output:


5910.2708618331053358

2769.9383667180277349

4322.8216216216526924

3782.8819351980262700

11026.6597938144329891

8896.0739875392591287

8760.6038732394366200

392.6255020080321285

1483.1413969337982616

405.0993006999692416

26164.4669603524229089

5774.7469492615717295

5941.8328075713189853

...

result:

ok 10000 numbers

Test #30:

score: 0
Accepted
time: 42ms
memory: 3832kb

input:

10000
616.297 555.460 2.712 474.476 9.362
2168.839 71.552 7.223 970.694 8.902
7964.311 6380.675 4.152 5635.978 6.625
9607.475 3434.832 7.253 1584.385 0.592
5799.614 5169.057 4.596 3833.295 0.230
7720.882 390.768 8.103 7324.917 3.768
5649.791 5069.866 2.370 105.385 1.825
5422.928 3232.441 7.452 4538....

output:


57.7506211700444983

140.5960681863660566

850.7136603780396036

1798.1948159382324555

1399.0798520452567451

716.6721421953102423

1510.1551847439934835

433.7682501342951535

470.0637478612589558

383.7094132166498373

213.0039930377802805

3738.6866700722752619

1640.1551992090725633

1232.9650...

result:

ok 10000 numbers

Test #31:

score: 0
Accepted
time: 44ms
memory: 3912kb

input:

10000
3175.823 2209.793 82.310 1567.313 98.952
2827.194 499.952 3.540 1286.031 72.053
7329.159 2813.118 2.508 4244.383 27.919
8594.610 4029.204 23.857 8321.213 31.852
5962.615 5857.484 39.588 4384.499 70.911
3645.911 3134.350 54.596 3338.925 52.037
6012.818 4856.771 25.465 754.753 27.901
3172.603 10...

output:


21.0651046556774586

57.0861032850818148

373.0053010494645224

168.8898017360291406

61.8310135240359960

57.4098835085956467

148.4768954020620564

37.5941708601180953

80.8934433389908369

58.9335799011033674

33.0109380690120238

111.4853382855841886

31.5121728630798607

43.9424907214425108

2...

result:

ok 10000 numbers

Test #32:

score: 0
Accepted
time: 60ms
memory: 3860kb

input:

10000
4197.462 512.718 652.359 4141.106 467.865
5109.145 3908.285 532.258 3918.179 760.827
2270.950 1917.740 686.288 1636.492 692.151
7140.163 1720.169 130.377 3485.891 646.676
8529.796 647.634 488.630 187.430 402.587
5060.451 1839.250 299.785 2550.323 471.767
3291.054 1406.512 422.556 2025.605 660....

output:


4.2549847180326246

5.1498947855425741

2.3643569107673552

13.1938071907170519

16.1311462666056389

7.4804083203784630

3.6107841116281670

15.4496177245588086

9.8172000471166316

10.6788612262927733

15.7799214154803839

13.7371649387936826

0.2894968977713009

17.0491182013820606

5.5276902926...

result:

ok 10000 numbers

Test #33:

score: 0
Accepted
time: 48ms
memory: 3840kb

input:

10000
6491.440 263.052 0.612 4463.729 0.057
8416.331 2796.304 0.010 4069.752 0.561
9945.956 4364.938 0.183 2796.397 0.971
1610.200 955.609 0.311 744.558 0.254
4549.143 692.713 0.608 4294.098 0.216
4420.735 1586.324 0.793 2885.942 0.668
2600.062 905.998 0.673 1208.863 0.518
6302.317 1143.434 0.967 36...

output:


11036.7516339869281046

22256.8324420677361850

13122.9176107106076214

3223.4530973459289405

6670.9963592236871062

3915.3682409311192296

2517.1827637444279346

5334.9358841785668508

2742.9567367125236446

2157.2691680266090271

4920.5458089668615984

5747.7909292035398230

4218.094610778833530...

result:

ok 10000 numbers

Test #34:

score: 0
Accepted
time: 54ms
memory: 3964kb

input:

10000
5814.653 4387.399 8.508 2017.157 7.579
6595.988 920.952 3.117 117.566 5.086
8638.418 6297.549 9.225 2726.041 5.342
8734.179 1039.937 0.001 1872.197 1.970
4615.143 2153.007 5.456 1176.554 4.631
9570.635 2272.548 7.278 5343.475 7.017
6881.313 6797.896 4.491 6728.005 0.625
1923.466 1483.809 4.916...

output:


506.8776987197415488

1273.7754620526936689

808.3613399463765292

5383.9472081218274111

554.3368692381418256

884.3345225605295822

1513.6708973502560678

179.8883454909106583

646.4105982523497375

376.2594588651340747

65.7845163631761301

1243.6080720903667978

1179.4114447860014188

306.92027...

result:

ok 10000 numbers

Test #35:

score: 0
Accepted
time: 56ms
memory: 3860kb

input:

10000
6027.310 5182.885 36.334 1603.878 34.613
7365.488 4336.309 45.531 7230.661 11.569
9564.388 2648.221 82.713 6012.244 63.135
6988.888 3128.278 35.234 3564.273 47.380
8848.165 1805.102 56.693 4783.225 20.663
8277.878 6188.089 37.845 4542.273 83.559
27.775 17.267 41.560 6.784 95.735
5979.300 436.5...

output:


113.1569616246229477

155.3003684346300864

88.6430461852951047

89.8743917502062645

187.9115058296438714

81.7410793719975223

0.2528392693241297

98.1853913232867218

21.5910025855770497

82.1683825427596210

13.1369926708146172

38.3702436011522278

10.8072496118011287

18.0654257470417627

19....

result:

ok 10000 numbers

Test #36:

score: 0
Accepted
time: 51ms
memory: 3904kb

input:

10000
2192.374 568.292 888.021 955.204 749.264
603.894 517.819 271.774 122.537 28.760
2287.769 1998.099 812.993 1256.575 86.429
4978.016 2976.499 978.610 2847.919 532.226
7765.964 695.995 338.383 4706.174 875.771
7285.311 2898.545 564.010 6976.814 454.021
7785.744 4775.283 114.582 4118.970 499.754
2...

output:


1.6511803586060324

2.5387601462980270

3.1703089694499215

4.0022415289745334

8.9299823458182527

8.3482587573189978

22.9163108249258635

1.9358475281108080

7.2006365858681352

3.6210389090479832

5.9197834252379413

0.9455871026481502

14.2957447681956085

3.2464804956802513

12.86495688161301...

result:

ok 10000 numbers

Test #37:

score: 0
Accepted
time: 56ms
memory: 3864kb

input:

10000
2020.668 1663.741 0.698 1285.586 629.089
4539.473 4160.328 0.704 260.728 176.842
7007.399 5441.320 0.365 4050.391 466.298
9314.056 6905.604 0.059 5053.649 331.377
3829.895 1143.108 0.071 568.724 325.918
4244.209 2163.188 0.739 1853.569 236.974
2807.981 1079.306 0.361 170.316 687.958
9004.878 2...

output:


4.3805407501959182

27.1440099071487543

21.3691823683567161

40.9638055749192008

13.4960910413048681

25.7318439997636872

4.3291843397416703

17.6504690395305744

10.0711515414824885

26.8877190024505600

14.1693136211578199

29.2915112921423517

10.3118388137415813

1.8200650334092118

11.56585...

result:

ok 10000 numbers

Test #38:

score: 0
Accepted
time: 40ms
memory: 3692kb

input:

10000
3717.972 3142.967 5.931 2429.240 170.491
2908.706 1825.965 8.312 962.852 417.840
7613.768 5226.429 5.643 799.607 753.933
9492.108 4544.976 9.432 4840.440 539.737
19.246 0.358 5.839 11.131 738.263
3815.529 2623.704 6.269 375.970 34.841
3329.533 1411.036 3.480 2589.723 863.745
578.480 179.346 0....

output:


29.3663829762274841

9.2656471376603485

11.1593138912874221

26.2049405543811152

0.0370613182565021

120.3036365201917281

4.7112782128984828

2.8414136857572902

7.5073034515938636

0.9023260508321228

6.1104666793255212

4.1519560386151537

5.8089903089381555

3.5103795823366677

147.9809475663...

result:

ok 10000 numbers

Test #39:

score: 0
Accepted
time: 60ms
memory: 3860kb

input:

10000
8537.609 410.814 41.414 4477.344 937.332
5963.377 3364.450 58.406 4889.028 668.640
9878.651 9139.894 33.339 2125.915 801.525
9132.595 2105.145 10.521 7889.568 151.624
6517.774 4769.229 19.831 2777.674 86.571
1362.331 286.311 26.347 730.377 565.421
1935.462 1698.608 50.307 531.715 326.010
2338....

output:


12.8778447122550151

10.5254337162000479

14.9771572939084869

68.4299451274204611

88.1723059858453799

3.5270798219379896

6.6884798683623802

3.6152131173069811

17.4335100328916820

234.5483356379787725

65.2603946533086349

22.8365384621693316

18.4068084303833278

12.1357733603331535

16.3099...

result:

ok 10000 numbers

Test #40:

score: 0
Accepted
time: 36ms
memory: 3860kb

input:

10000
9086.117 3389.059 489.165 7338.681 0.860
9665.351 2994.701 384.137 4685.619 0.743
2393.769 564.003 683.751 910.617 0.117
9249.801 5124.267 231.201 5484.051 0.795
1147.773 61.855 370.167 671.487 0.183
2556.588 2488.357 334.094 2294.805 0.212
4419.888 327.523 77.624 529.604 0.473
45.298 35.976 7...

output:


25.5030020545214805

32.9571272749045262

4.3258028141823559

57.8515447597544993

3.2677899434579528

7.8565284021862111

61.1590616304235803

0.0772730616656575

11.2316932963074439

14.3440612185940058

14.0437305325533693

7.5895863604393284

17.1227112136415700

17.1084109966087341

15.7741737...

result:

ok 10000 numbers

Test #41:

score: 0
Accepted
time: 60ms
memory: 3916kb

input:

10000
7952.115 6398.736 998.438 777.594 9.812
7566.853 1823.315 779.074 940.147 7.810
9017.604 8575.481 4.512 5563.192 9.214
7901.775 1889.838 3.283 5633.071 1.536
1160.786 234.178 148.408 147.537 1.571
9270.991 3202.941 63.612 1105.311 7.810
8404.159 8180.701 329.384 5481.727 1.457
1673.235 938.382...

output:


9.5203648098329591

12.0529859807925820

732.3315056481560603

2137.0676376209551210

9.3995202414964153

159.1753381316835316

26.1931878901221674

4.7948771556744939

0.5782768025834935

14.0747454403043527

16.8672900529458469

12.4568017365363446

11.8590161891836757

165.5226784755770263

18.2...

result:

ok 10000 numbers

Test #42:

score: 0
Accepted
time: 56ms
memory: 3972kb

input:

10000
6341.185 4082.301 594.696 5937.685 27.398
5248.282 2361.618 605.984 2015.934 27.045
4721.771 2093.972 56.018 4501.895 12.151
3252.822 1067.100 984.173 2815.232 34.818
8594.274 1453.718 12.363 8326.995 25.914
6811.364 6631.455 37.520 750.151 5.005
8432.092 1632.518 780.309 2257.048 69.123
5406....

output:


14.4612861024792499

12.5579223213814226

96.9786105579902141

4.3893929217728997

253.4527893322865319

165.3119495287794229

12.8982364678608090

9.3231314603578923

21.4562126105340552

8.5819338706597441

8.8458552859375439

8.7322591033135831

2.0632728306214150

13.0454914321396095

43.664119...

result:

ok 10000 numbers

Test #43:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

1
0.002 0.000 1000 0.002 1000

output:


0.0000010000484359

result:

ok found '0.0000010', expected '0.0000010', error '0.0000000'

Extra Test:

score: 0
Extra Test Passed