QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#322357 | #5667. Meeting Places | ushg8877 | AC ✓ | 364ms | 129556kb | C++14 | 1.6kb | 2024-02-06 21:58:44 | 2024-02-06 21:58:44 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define MP make_pair
const int MAXN=2005;
const ld dx=1e-18;
const int MOD=(1ll<<31)-1;
const ll P=233811181;
int n,k;ll x;
struct Point{ld x,y;}p[MAXN];
ld a[MAXN][MAXN],f[MAXN][MAXN];
ld dis(Point x,Point y){return sqrt((x.x-y.x)*(x.x-y.x)+(x.y-y.y)*(x.y-y.y));}
ll chg(ll &x){return x=(x*P+1)%MOD;}
struct Line{ld k,b;};// this line is kx+b.
Point operator *(Line n,Line m){
ld x=(n.b-m.b+dx)/(m.k-n.k+dx);
return (Point){x,n.k*x+n.b};
}
Line plumbline(Point x,Point y){
Point z=(Point){(x.x+y.x)/2,(x.y+y.y)/2};
ld k=(y.y-x.y+dx)/(y.x-x.x+dx);
return (Line){-1/k,z.y+z.x/k};
}
Point circle(Point x,Point y,Point z){
return plumbline(x,y)*plumbline(y,z);
}
Point o;ld r;
int main(){
ios::sync_with_stdio(false);
cin>>n>>k>>x;
p[1].x=x;p[1].y=chg(x);
for(int i=2;i<=n;i++) p[i].x=chg(x),p[i].y=chg(x);
for(int t=1;t<=n;t++){
Point o=(Point){0,0};ld r=0;
for(int i=t;i<=n;i++){
if(dis(p[i],o)>r){
o=p[i];r=dis(p[i],o);
for(int j=t;j<i;j++) if(dis(p[j],o)>r+dx){
o=(Point){(p[j].x+p[i].x)/2,(p[j].y+p[i].y)/2};
r=dis(p[i],o);
for(int k=t;k<j;k++) if(dis(p[k],o)>r+dx){
o=circle(p[i],p[j],p[k]);
r=dis(p[i],o);
}
}
}
a[t][i]=r;
}
}
for(int i=1;i<=n;i++) for(int j=0;j<=k;j++) f[i][j]=1e18;
for(int i=1;i<=n;i++){
for(int j=i;j>=1;j--) if(a[j][i]!=a[j-1][i]||j==1){
for(int t=1;t<=k;t++) f[i][t]=min(f[i][t],f[j-1][t-1]+a[j][i]);
}
}
cout<<setprecision(12)<<f[n][k]<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 14180kb
input:
100 23 213
output:
1319350480.8
result:
ok found '1319350480.8000000', expected '1319350480.8007326', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5832kb
input:
10 1 1060
output:
1042753143.35
result:
ok found '1042753143.3500000', expected '1042753143.3451676', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 6072kb
input:
10 10 2373
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 6016kb
input:
10 2 3396
output:
1236610536.95
result:
ok found '1236610536.9500000', expected '1236610536.9469230', error '0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 6020kb
input:
10 3 1998
output:
973790809.822
result:
ok found '973790809.8220000', expected '973790809.8224442', error '0.0000000'
Test #6:
score: 0
Accepted
time: 0ms
memory: 6024kb
input:
10 4 562
output:
910867389.907
result:
ok found '910867389.9069999', expected '910867389.9069330', error '0.0000000'
Test #7:
score: 0
Accepted
time: 1ms
memory: 5836kb
input:
10 5 6048
output:
818240814.711
result:
ok found '818240814.7110000', expected '818240814.7105150', error '0.0000000'
Test #8:
score: 0
Accepted
time: 1ms
memory: 8072kb
input:
10 6 2524
output:
500106979.347
result:
ok found '500106979.3470000', expected '500106979.3467762', error '0.0000000'
Test #9:
score: 0
Accepted
time: 1ms
memory: 8032kb
input:
10 7 5415
output:
559478971.432
result:
ok found '559478971.4320000', expected '559478971.4320059', error '0.0000000'
Test #10:
score: 0
Accepted
time: 1ms
memory: 8076kb
input:
10 8 1438
output:
500309745.463
result:
ok found '500309745.4630000', expected '500309745.4627700', error '0.0000000'
Test #11:
score: 0
Accepted
time: 1ms
memory: 7992kb
input:
10 9 3172
output:
162279748.875
result:
ok found '162279748.8750000', expected '162279748.8753452', error '0.0000000'
Test #12:
score: 0
Accepted
time: 0ms
memory: 10176kb
input:
100 1 8316
output:
1320052902.15
result:
ok found '1320052902.1500001', expected '1320052902.1522903', error '0.0000000'
Test #13:
score: 0
Accepted
time: 3ms
memory: 12400kb
input:
100 100 4179
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #14:
score: 0
Accepted
time: 0ms
memory: 12456kb
input:
100 12 3405
output:
1329687126.13
result:
ok found '1329687126.1300001', expected '1329687126.1304548', error '0.0000000'
Test #15:
score: 0
Accepted
time: 0ms
memory: 10200kb
input:
100 16 8378
output:
1338056514.48
result:
ok found '1338056514.4800000', expected '1338056514.4842694', error '0.0000000'
Test #16:
score: 0
Accepted
time: 3ms
memory: 14156kb
input:
100 2 1858
output:
1310392496.14
result:
ok found '1310392496.1400001', expected '1310392496.1430581', error '0.0000000'
Test #17:
score: 0
Accepted
time: 0ms
memory: 12204kb
input:
100 25 4596
output:
1440464106.62
result:
ok found '1440464106.6199999', expected '1440464106.6229298', error '0.0000000'
Test #18:
score: 0
Accepted
time: 0ms
memory: 14208kb
input:
100 3 5633
output:
1399621082.61
result:
ok found '1399621082.6099999', expected '1399621082.6142738', error '0.0000000'
Test #19:
score: 0
Accepted
time: 2ms
memory: 12216kb
input:
100 32 7827
output:
1342073760.53
result:
ok found '1342073760.5300000', expected '1342073760.5322330', error '0.0000000'
Test #20:
score: 0
Accepted
time: 0ms
memory: 14172kb
input:
100 4 3693
output:
1339808706.71
result:
ok found '1339808706.7100000', expected '1339808706.7098689', error '0.0000000'
Test #21:
score: 0
Accepted
time: 2ms
memory: 12268kb
input:
100 5 2252
output:
1394874243.51
result:
ok found '1394874243.5100000', expected '1394874243.5057042', error '0.0000000'
Test #22:
score: 0
Accepted
time: 2ms
memory: 12376kb
input:
100 50 4254
output:
1322809748.41
result:
ok found '1322809748.4100001', expected '1322809748.4052832', error '0.0000000'
Test #23:
score: 0
Accepted
time: 2ms
memory: 12068kb
input:
100 6 53
output:
1364441356.17
result:
ok found '1364441356.1700001', expected '1364441356.1700988', error '0.0000000'
Test #24:
score: 0
Accepted
time: 2ms
memory: 12276kb
input:
100 64 4337
output:
1180754550.24
result:
ok found '1180754550.2400000', expected '1180754550.2422838', error '0.0000000'
Test #25:
score: 0
Accepted
time: 0ms
memory: 12192kb
input:
100 7 5366
output:
1423557626.36
result:
ok found '1423557626.3599999', expected '1423557626.3586798', error '0.0000000'
Test #26:
score: 0
Accepted
time: 0ms
memory: 12308kb
input:
100 8 8509
output:
1353289305.35
result:
ok found '1353289305.3499999', expected '1353289305.3519957', error '0.0000000'
Test #27:
score: 0
Accepted
time: 2ms
memory: 12080kb
input:
100 9 1423
output:
1228887266.57
result:
ok found '1228887266.5699999', expected '1228887266.5661671', error '0.0000000'
Test #28:
score: 0
Accepted
time: 3ms
memory: 12292kb
input:
100 91 4806
output:
656574218.509
result:
ok found '656574218.5089999', expected '656574218.5086756', error '0.0000000'
Test #29:
score: 0
Accepted
time: 3ms
memory: 14160kb
input:
100 92 4024
output:
794693428.616
result:
ok found '794693428.6160001', expected '794693428.6162238', error '0.0000000'
Test #30:
score: 0
Accepted
time: 0ms
memory: 14104kb
input:
100 93 606
output:
677641787.486
result:
ok found '677641787.4859999', expected '677641787.4863122', error '0.0000000'
Test #31:
score: 0
Accepted
time: 3ms
memory: 12036kb
input:
100 94 7265
output:
686423239.263
result:
ok found '686423239.2630000', expected '686423239.2626028', error '0.0000000'
Test #32:
score: 0
Accepted
time: 0ms
memory: 10304kb
input:
100 95 8469
output:
328187125.924
result:
ok found '328187125.9240000', expected '328187125.9235951', error '0.0000000'
Test #33:
score: 0
Accepted
time: 3ms
memory: 12184kb
input:
100 96 1079
output:
492964787.626
result:
ok found '492964787.6260000', expected '492964787.6259086', error '0.0000000'
Test #34:
score: 0
Accepted
time: 0ms
memory: 10240kb
input:
100 97 5453
output:
258652807.791
result:
ok found '258652807.7910000', expected '258652807.7906564', error '0.0000000'
Test #35:
score: 0
Accepted
time: 0ms
memory: 10256kb
input:
100 98 1778
output:
159490192.119
result:
ok found '159490192.1190000', expected '159490192.1188908', error '0.0000000'
Test #36:
score: 0
Accepted
time: 2ms
memory: 10260kb
input:
100 99 1825
output:
33793756.329
result:
ok found '33793756.3290000', expected '33793756.3289980', error '0.0000000'
Test #37:
score: 0
Accepted
time: 26ms
memory: 69456kb
input:
1000 1 2453
output:
1486878333.29
result:
ok found '1486878333.2900000', expected '1486878333.2858574', error '0.0000000'
Test #38:
score: 0
Accepted
time: 71ms
memory: 67916kb
input:
1000 1000 1798
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #39:
score: 0
Accepted
time: 22ms
memory: 69644kb
input:
1000 125 43
output:
1474031969.52
result:
ok found '1474031969.5200000', expected '1474031969.5174232', error '0.0000000'
Test #40:
score: 0
Accepted
time: 32ms
memory: 69832kb
input:
1000 128 8107
output:
1440374614.94
result:
ok found '1440374614.9400001', expected '1440374614.9391975', error '0.0000000'
Test #41:
score: 0
Accepted
time: 38ms
memory: 69516kb
input:
1000 15 6639
output:
1491336935.55
result:
ok found '1491336935.5500000', expected '1491336935.5536251', error '0.0000000'
Test #42:
score: 0
Accepted
time: 31ms
memory: 67552kb
input:
1000 16 1251
output:
1445211807.12
result:
ok found '1445211807.1199999', expected '1445211807.1160963', error '0.0000000'
Test #43:
score: 0
Accepted
time: 30ms
memory: 69704kb
input:
1000 2 1303
output:
1468989868.65
result:
ok found '1468989868.6500001', expected '1468989868.6486022', error '0.0000000'
Test #44:
score: 0
Accepted
time: 37ms
memory: 67676kb
input:
1000 250 4457
output:
1487674970.77
result:
ok found '1487674970.7700000', expected '1487674970.7660158', error '0.0000000'
Test #45:
score: 0
Accepted
time: 39ms
memory: 69540kb
input:
1000 256 4135
output:
1474218271.51
result:
ok found '1474218271.5100000', expected '1474218271.5140772', error '0.0000000'
Test #46:
score: 0
Accepted
time: 16ms
memory: 67580kb
input:
1000 3 713
output:
1482496228.99
result:
ok found '1482496228.9900000', expected '1482496228.9904778', error '0.0000000'
Test #47:
score: 0
Accepted
time: 31ms
memory: 69460kb
input:
1000 31 8139
output:
1494361943.48
result:
ok found '1494361943.4800000', expected '1494361943.4799194', error '0.0000000'
Test #48:
score: 0
Accepted
time: 28ms
memory: 69808kb
input:
1000 32 7916
output:
1499333171.09
result:
ok found '1499333171.0899999', expected '1499333171.0938647', error '0.0000000'
Test #49:
score: 0
Accepted
time: 31ms
memory: 67616kb
input:
1000 4 2432
output:
1455826569.04
result:
ok found '1455826569.0400000', expected '1455826569.0394101', error '0.0000000'
Test #50:
score: 0
Accepted
time: 21ms
memory: 69372kb
input:
1000 5 2457
output:
1452189628.2
result:
ok found '1452189628.2000000', expected '1452189628.1967139', error '0.0000000'
Test #51:
score: 0
Accepted
time: 49ms
memory: 69704kb
input:
1000 500 8734
output:
1432279300.57
result:
ok found '1432279300.5699999', expected '1432279300.5662787', error '0.0000000'
Test #52:
score: 0
Accepted
time: 51ms
memory: 67828kb
input:
1000 512 1866
output:
1446804508.04
result:
ok found '1446804508.0400000', expected '1446804508.0351865', error '0.0000000'
Test #53:
score: 0
Accepted
time: 8ms
memory: 69656kb
input:
1000 6 1580
output:
1490178756.86
result:
ok found '1490178756.8599999', expected '1490178756.8566034', error '0.0000000'
Test #54:
score: 0
Accepted
time: 29ms
memory: 67624kb
input:
1000 62 3047
output:
1482100829.65
result:
ok found '1482100829.6500001', expected '1482100829.6467109', error '0.0000000'
Test #55:
score: 0
Accepted
time: 23ms
memory: 69564kb
input:
1000 64 4836
output:
1441850815.86
result:
ok found '1441850815.8599999', expected '1441850815.8553615', error '0.0000000'
Test #56:
score: 0
Accepted
time: 34ms
memory: 69660kb
input:
1000 7 5269
output:
1473104490.73
result:
ok found '1473104490.7300000', expected '1473104490.7287984', error '0.0000000'
Test #57:
score: 0
Accepted
time: 20ms
memory: 69552kb
input:
1000 8 2649
output:
1459133296.61
result:
ok found '1459133296.6099999', expected '1459133296.6066234', error '0.0000000'
Test #58:
score: 0
Accepted
time: 23ms
memory: 67580kb
input:
1000 9 3999
output:
1482914523.38
result:
ok found '1482914523.3800001', expected '1482914523.3807039', error '0.0000000'
Test #59:
score: 0
Accepted
time: 79ms
memory: 69888kb
input:
1000 991 3610
output:
295501032.478
result:
ok found '295501032.4780000', expected '295501032.4780874', error '0.0000000'
Test #60:
score: 0
Accepted
time: 87ms
memory: 68072kb
input:
1000 992 3030
output:
337274092.654
result:
ok found '337274092.6540000', expected '337274092.6540381', error '0.0000000'
Test #61:
score: 0
Accepted
time: 79ms
memory: 69556kb
input:
1000 993 6980
output:
222375113.106
result:
ok found '222375113.1060000', expected '222375113.1057986', error '0.0000000'
Test #62:
score: 0
Accepted
time: 75ms
memory: 69664kb
input:
1000 994 7222
output:
218007091.693
result:
ok found '218007091.6930000', expected '218007091.6933041', error '0.0000000'
Test #63:
score: 0
Accepted
time: 83ms
memory: 70736kb
input:
1000 995 1323
output:
169577520.224
result:
ok found '169577520.2240000', expected '169577520.2236529', error '0.0000000'
Test #64:
score: 0
Accepted
time: 76ms
memory: 69724kb
input:
1000 996 2761
output:
135524743.911
result:
ok found '135524743.9110000', expected '135524743.9114488', error '0.0000000'
Test #65:
score: 0
Accepted
time: 73ms
memory: 67976kb
input:
1000 997 4946
output:
87043806.4228
result:
ok found '87043806.4228000', expected '87043806.4227921', error '0.0000000'
Test #66:
score: 0
Accepted
time: 66ms
memory: 70644kb
input:
1000 998 842
output:
24094936.5512
result:
ok found '24094936.5512000', expected '24094936.5511917', error '0.0000000'
Test #67:
score: 0
Accepted
time: 72ms
memory: 67972kb
input:
1000 999 5078
output:
4597519.06466
result:
ok found '4597519.0646600', expected '4597519.0646550', error '0.0000000'
Test #68:
score: 0
Accepted
time: 90ms
memory: 116444kb
input:
2000 1 2633
output:
1502350354.5
result:
ok found '1502350354.5000000', expected '1502350354.4995270', error '0.0000000'
Test #69:
score: 0
Accepted
time: 202ms
memory: 127604kb
input:
2000 1000 6248
output:
1469507093.4
result:
ok found '1469507093.4000001', expected '1469507093.4042110', error '0.0000000'
Test #70:
score: 0
Accepted
time: 198ms
memory: 126860kb
input:
2000 1024 2507
output:
1448066815.32
result:
ok found '1448066815.3199999', expected '1448066815.3184788', error '0.0000000'
Test #71:
score: 0
Accepted
time: 138ms
memory: 110684kb
input:
2000 125 3002
output:
1476846542.03
result:
ok found '1476846542.0300000', expected '1476846542.0318909', error '0.0000000'
Test #72:
score: 0
Accepted
time: 78ms
memory: 122424kb
input:
2000 128 5622
output:
1464957942.64
result:
ok found '1464957942.6400001', expected '1464957942.6400380', error '0.0000000'
Test #73:
score: 0
Accepted
time: 70ms
memory: 111292kb
input:
2000 15 5891
output:
1490626300.16
result:
ok found '1490626300.1600001', expected '1490626300.1558671', error '0.0000000'
Test #74:
score: 0
Accepted
time: 70ms
memory: 123652kb
input:
2000 16 1750
output:
1504400245.41
result:
ok found '1504400245.4100001', expected '1504400245.4149806', error '0.0000000'
Test #75:
score: 0
Accepted
time: 314ms
memory: 127888kb
input:
2000 1990 6698
output:
313951388.405
result:
ok found '313951388.4050000', expected '313951388.4046511', error '0.0000000'
Test #76:
score: 0
Accepted
time: 301ms
memory: 128600kb
input:
2000 1991 80
output:
248800118.679
result:
ok found '248800118.6790000', expected '248800118.6793060', error '0.0000000'
Test #77:
score: 0
Accepted
time: 356ms
memory: 127988kb
input:
2000 1992 4802
output:
257156356.522
result:
ok found '257156356.5220000', expected '257156356.5216795', error '0.0000000'
Test #78:
score: 0
Accepted
time: 325ms
memory: 129108kb
input:
2000 1993 169
output:
197117968.448
result:
ok found '197117968.4480000', expected '197117968.4482248', error '0.0000000'
Test #79:
score: 0
Accepted
time: 350ms
memory: 129556kb
input:
2000 1994 6269
output:
109695555.809
result:
ok found '109695555.8090000', expected '109695555.8088501', error '0.0000000'
Test #80:
score: 0
Accepted
time: 364ms
memory: 129224kb
input:
2000 1995 3452
output:
179563229.397
result:
ok found '179563229.3970000', expected '179563229.3967843', error '0.0000000'
Test #81:
score: 0
Accepted
time: 355ms
memory: 127736kb
input:
2000 1996 2191
output:
84783513.6456
result:
ok found '84783513.6456000', expected '84783513.6455896', error '0.0000000'
Test #82:
score: 0
Accepted
time: 332ms
memory: 127840kb
input:
2000 1997 7803
output:
53635859.34
result:
ok found '53635859.3400000', expected '53635859.3399900', error '0.0000000'
Test #83:
score: 0
Accepted
time: 344ms
memory: 128248kb
input:
2000 1998 8341
output:
33466185.8149
result:
ok found '33466185.8149000', expected '33466185.8149442', error '0.0000000'
Test #84:
score: 0
Accepted
time: 347ms
memory: 128532kb
input:
2000 1999 6773
output:
2608075.46528
result:
ok found '2608075.4652800', expected '2608075.4652833', error '0.0000000'
Test #85:
score: 0
Accepted
time: 74ms
memory: 128936kb
input:
2000 2 4496
output:
1484602254.13
result:
ok found '1484602254.1300001', expected '1484602254.1310012', error '0.0000000'
Test #86:
score: 0
Accepted
time: 307ms
memory: 129412kb
input:
2000 2000 5384
output:
0
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #87:
score: 0
Accepted
time: 122ms
memory: 127144kb
input:
2000 250 1029
output:
1465117434.06
result:
ok found '1465117434.0599999', expected '1465117434.0631006', error '0.0000000'
Test #88:
score: 0
Accepted
time: 86ms
memory: 128980kb
input:
2000 256 5220
output:
1481878242.22
result:
ok found '1481878242.2200000', expected '1481878242.2184739', error '0.0000000'
Test #89:
score: 0
Accepted
time: 130ms
memory: 127192kb
input:
2000 3 8403
output:
1489320436.43
result:
ok found '1489320436.4300001', expected '1489320436.4318533', error '0.0000000'
Test #90:
score: 0
Accepted
time: 91ms
memory: 128812kb
input:
2000 31 6950
output:
1477330995.23
result:
ok found '1477330995.2300000', expected '1477330995.2251310', error '0.0000000'
Test #91:
score: 0
Accepted
time: 88ms
memory: 127192kb
input:
2000 32 3632
output:
1496222504.65
result:
ok found '1496222504.6500001', expected '1496222504.6490064', error '0.0000000'
Test #92:
score: 0
Accepted
time: 103ms
memory: 127144kb
input:
2000 4 2987
output:
1477889007.51
result:
ok found '1477889007.5100000', expected '1477889007.5054593', error '0.0000000'
Test #93:
score: 0
Accepted
time: 64ms
memory: 129004kb
input:
2000 5 2580
output:
1485468254.74
result:
ok found '1485468254.7400000', expected '1485468254.7374952', error '0.0000000'
Test #94:
score: 0
Accepted
time: 138ms
memory: 128904kb
input:
2000 500 6270
output:
1475788271.03
result:
ok found '1475788271.0300000', expected '1475788271.0275989', error '0.0000000'
Test #95:
score: 0
Accepted
time: 153ms
memory: 127436kb
input:
2000 512 1864
output:
1470340599.47
result:
ok found '1470340599.4700000', expected '1470340599.4749856', error '0.0000000'
Test #96:
score: 0
Accepted
time: 74ms
memory: 127164kb
input:
2000 6 8814
output:
1497075189.01
result:
ok found '1497075189.0100000', expected '1497075189.0134962', error '0.0000000'
Test #97:
score: 0
Accepted
time: 112ms
memory: 128876kb
input:
2000 62 4139
output:
1490927650.97
result:
ok found '1490927650.9700000', expected '1490927650.9732120', error '0.0000000'
Test #98:
score: 0
Accepted
time: 77ms
memory: 127192kb
input:
2000 64 7700
output:
1494910912.61
result:
ok found '1494910912.6099999', expected '1494910912.6137834', error '0.0000000'
Test #99:
score: 0
Accepted
time: 105ms
memory: 127224kb
input:
2000 7 8304
output:
1488325857.82
result:
ok found '1488325857.8199999', expected '1488325857.8219898', error '0.0000000'
Test #100:
score: 0
Accepted
time: 61ms
memory: 127228kb
input:
2000 8 7774
output:
1507136513.17
result:
ok found '1507136513.1700001', expected '1507136513.1715591', error '0.0000000'
Test #101:
score: 0
Accepted
time: 77ms
memory: 127156kb
input:
2000 9 2618
output:
1492019659.04
result:
ok found '1492019659.0400000', expected '1492019659.0373163', error '0.0000000'
Test #102:
score: 0
Accepted
time: 8ms
memory: 36844kb
input:
500 1 7674
output:
1463672939.78
result:
ok found '1463672939.7800000', expected '1463672939.7812500', error '0.0000000'
Test #103:
score: 0
Accepted
time: 12ms
memory: 38768kb
input:
500 125 1629
output:
1420736329.08
result:
ok found '1420736329.0799999', expected '1420736329.0838273', error '0.0000000'
Test #104:
score: 0
Accepted
time: 6ms
memory: 38848kb
input:
500 15 7376
output:
1465677415.51
result:
ok found '1465677415.5100000', expected '1465677415.5063879', error '0.0000000'
Test #105:
score: 0
Accepted
time: 13ms
memory: 37056kb
input:
500 250 5627
output:
1411074935.88
result:
ok found '1411074935.8800001', expected '1411074935.8823581', error '0.0000000'
Test #106:
score: 0
Accepted
time: 8ms
memory: 38748kb
input:
500 3 2245
output:
1437079231.54
result:
ok found '1437079231.5400000', expected '1437079231.5409811', error '0.0000000'
Test #107:
score: 0
Accepted
time: 8ms
memory: 36972kb
input:
500 31 8072
output:
1487957912.03
result:
ok found '1487957912.0300000', expected '1487957912.0314612', error '0.0000000'
Test #108:
score: 0
Accepted
time: 10ms
memory: 38824kb
input:
500 62 2415
output:
1454787477.65
result:
ok found '1454787477.6500001', expected '1454787477.6493773', error '0.0000000'
Test #109:
score: 0
Accepted
time: 9ms
memory: 36916kb
input:
500 7 1586
output:
1459900114.7
result:
ok found '1459900114.7000000', expected '1459900114.7046607', error '0.0000000'