QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#86797 | #5667. Meeting Places | zhouhuanyi | AC ✓ | 135ms | 35892kb | C++23 | 2.7kb | 2023-03-10 22:46:59 | 2023-03-10 22:47:01 |
Judging History
answer
#include<iostream>
#include<cstdio>
#include<cmath>
#include<vector>
#include<cassert>
#define N 2000
#define inf 1e36
#define eps 1e-9
using namespace std;
int read()
{
char c=0;
int sum=0;
while (c<'0'||c>'9') c=getchar();
while ('0'<=c&&c<='9') sum=sum*10+c-'0',c=getchar();
return sum;
}
void Adder(double &x,double d)
{
x=(x<d)?x:d;
return;
}
struct points
{
double x,y;
};
points st[N+1];
double dist(points a,points b)
{
return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
bool check_line(points a,points b,points c)
{
return abs((b.y-a.y)*(c.x-a.x)-(c.y-a.y)*(b.x-a.x))<eps;
}
struct line
{
double A,B,C;
};
points get_cross(line a,line b)
{
points t=(points){(a.B*b.C-a.C*b.B)/(a.A*b.B-a.B*b.A),(a.A*b.C-a.C*b.A)/(a.B*b.A-a.A*b.B)};
return t;
}
struct circle
{
double x,y,r;
};
circle res;
circle make_little_circle(points a,points b)
{
return (circle){(a.x+b.x)/2,(a.y+b.y)/2,dist(a,b)/2};
}
circle make_circle(points a,points b,points c)
{
if (check_line(a,b,c))
{
if (a.x>b.x) swap(a.x,b.x);
if (b.x>c.x) swap(b.x,c.x);
if (a.x>b.x) swap(a.x,b.x);
return make_little_circle(a,c);
}
else
{
points t=get_cross((line){2*(b.x-a.x),2*(b.y-a.y),a.x*a.x+a.y*a.y-b.x*b.x-b.y*b.y},(line){2*(c.x-a.x),2*(c.y-a.y),a.x*a.x+a.y*a.y-c.x*c.x-c.y*c.y});
return (circle){t.x,t.y,dist(t,a)};
}
}
bool check(circle a,points b)
{
return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)<=a.r*a.r+eps;
}
struct reads
{
int num;
double data;
};
int k,n,X[N+1],Y[N+1];
vector<reads>p[N+1];
double dp[N+1][N+1];
int main()
{
n=read(),k=read(),X[1]=read();
for (int i=1;i<=n;++i)
{
if (i!=1) X[i]=(Y[i-1]*233811181ll+1)%((1ll<<31)-1);
Y[i]=(X[i]*233811181ll+1)%((1ll<<31)-1);
}
for (int i=1;i<=n;++i) st[i]=(points){(double)(X[i]),(double)(Y[i])};
for (int i=n;i>=1;--i)
{
res=(circle){st[i].x,st[i].y,0},p[i].push_back((reads){i,0});
for (int j=i-1;j>=1;--j)
if (!check(res,st[j]))
{
res=(circle){st[j].x,st[j].y,0};
for (int t=i;t>=j+1;--t)
if (!check(res,st[t]))
{
res=make_little_circle(st[j],st[t]);
for (int s=i;s>=t+1;--s)
if (!check(res,st[s]))
res=make_circle(st[j],st[t],st[s]);
}
p[i].push_back((reads){j,res.r});
}
}
for (int i=0;i<=k;++i)
for (int j=1;j<=n;++j)
dp[i][j]=inf;
dp[0][0]=0;
for (int i=1;i<=k;++i)
for (int j=1;j<=n;++j)
{
Adder(dp[i][j],dp[i-1][j]);
for (int t=0;t+1<p[j].size();++t) Adder(dp[i][j],dp[i-1][p[j][t+1].num]+p[j][t].data);
Adder(dp[i][j],p[j].back().data);
}
printf("%0.6lf\n",dp[k][n]);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3836kb
input:
100 23 213
output:
1319350480.800733
result:
ok found '1319350480.8007331', expected '1319350480.8007326', error '0.0000000'
Test #2:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
10 1 1060
output:
1042753143.345168
result:
ok found '1042753143.3451680', expected '1042753143.3451676', error '0.0000000'
Test #3:
score: 0
Accepted
time: 2ms
memory: 3760kb
input:
10 10 2373
output:
0.000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #4:
score: 0
Accepted
time: 2ms
memory: 3628kb
input:
10 2 3396
output:
1236610536.946923
result:
ok found '1236610536.9469230', expected '1236610536.9469230', error '0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
10 3 1998
output:
973790809.822444
result:
ok found '973790809.8224440', expected '973790809.8224442', error '0.0000000'
Test #6:
score: 0
Accepted
time: 2ms
memory: 3760kb
input:
10 4 562
output:
910867389.906933
result:
ok found '910867389.9069330', expected '910867389.9069330', error '0.0000000'
Test #7:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
10 5 6048
output:
818240814.710515
result:
ok found '818240814.7105150', expected '818240814.7105150', error '0.0000000'
Test #8:
score: 0
Accepted
time: 2ms
memory: 3724kb
input:
10 6 2524
output:
500106979.346776
result:
ok found '500106979.3467760', expected '500106979.3467762', error '0.0000000'
Test #9:
score: 0
Accepted
time: 0ms
memory: 5644kb
input:
10 7 5415
output:
559478971.432006
result:
ok found '559478971.4320060', expected '559478971.4320059', error '0.0000000'
Test #10:
score: 0
Accepted
time: 2ms
memory: 3840kb
input:
10 8 1438
output:
500309745.462770
result:
ok found '500309745.4627700', expected '500309745.4627700', error '0.0000000'
Test #11:
score: 0
Accepted
time: 2ms
memory: 3844kb
input:
10 9 3172
output:
162279748.875345
result:
ok found '162279748.8753450', expected '162279748.8753452', error '0.0000000'
Test #12:
score: 0
Accepted
time: 2ms
memory: 3644kb
input:
100 1 8316
output:
1320052902.152290
result:
ok found '1320052902.1522901', expected '1320052902.1522903', error '0.0000000'
Test #13:
score: 0
Accepted
time: 2ms
memory: 3992kb
input:
100 100 4179
output:
0.000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #14:
score: 0
Accepted
time: 2ms
memory: 3580kb
input:
100 12 3405
output:
1329687126.130455
result:
ok found '1329687126.1304550', expected '1329687126.1304548', error '0.0000000'
Test #15:
score: 0
Accepted
time: 2ms
memory: 3652kb
input:
100 16 8378
output:
1338056514.484269
result:
ok found '1338056514.4842689', expected '1338056514.4842694', error '0.0000000'
Test #16:
score: 0
Accepted
time: 2ms
memory: 3744kb
input:
100 2 1858
output:
1310392496.143058
result:
ok found '1310392496.1430581', expected '1310392496.1430581', error '0.0000000'
Test #17:
score: 0
Accepted
time: 2ms
memory: 5980kb
input:
100 25 4596
output:
1440464106.622930
result:
ok found '1440464106.6229300', expected '1440464106.6229298', error '0.0000000'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
100 3 5633
output:
1399621082.614274
result:
ok found '1399621082.6142740', expected '1399621082.6142738', error '0.0000000'
Test #19:
score: 0
Accepted
time: 2ms
memory: 3792kb
input:
100 32 7827
output:
1342073760.532233
result:
ok found '1342073760.5322330', expected '1342073760.5322330', error '0.0000000'
Test #20:
score: 0
Accepted
time: 1ms
memory: 3600kb
input:
100 4 3693
output:
1339808706.709869
result:
ok found '1339808706.7098689', expected '1339808706.7098689', error '0.0000000'
Test #21:
score: 0
Accepted
time: 2ms
memory: 3852kb
input:
100 5 2252
output:
1394874243.505704
result:
ok found '1394874243.5057039', expected '1394874243.5057042', error '0.0000000'
Test #22:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
100 50 4254
output:
1322809748.405283
result:
ok found '1322809748.4052830', expected '1322809748.4052832', error '0.0000000'
Test #23:
score: 0
Accepted
time: 1ms
memory: 3772kb
input:
100 6 53
output:
1364441356.170099
result:
ok found '1364441356.1700990', expected '1364441356.1700988', error '0.0000000'
Test #24:
score: 0
Accepted
time: 0ms
memory: 5808kb
input:
100 64 4337
output:
1180754550.242284
result:
ok found '1180754550.2422841', expected '1180754550.2422838', error '0.0000000'
Test #25:
score: 0
Accepted
time: 1ms
memory: 3856kb
input:
100 7 5366
output:
1423557626.358680
result:
ok found '1423557626.3586800', expected '1423557626.3586798', error '0.0000000'
Test #26:
score: 0
Accepted
time: 2ms
memory: 3616kb
input:
100 8 8509
output:
1353289305.351996
result:
ok found '1353289305.3519959', expected '1353289305.3519957', error '0.0000000'
Test #27:
score: 0
Accepted
time: 1ms
memory: 3784kb
input:
100 9 1423
output:
1228887266.566167
result:
ok found '1228887266.5661671', expected '1228887266.5661671', error '0.0000000'
Test #28:
score: 0
Accepted
time: 0ms
memory: 5920kb
input:
100 91 4806
output:
656574218.508675
result:
ok found '656574218.5086750', expected '656574218.5086756', error '0.0000000'
Test #29:
score: 0
Accepted
time: 0ms
memory: 4024kb
input:
100 92 4024
output:
794693428.616224
result:
ok found '794693428.6162241', expected '794693428.6162238', error '0.0000000'
Test #30:
score: 0
Accepted
time: 2ms
memory: 6200kb
input:
100 93 606
output:
677641787.486312
result:
ok found '677641787.4863120', expected '677641787.4863122', error '0.0000000'
Test #31:
score: 0
Accepted
time: 3ms
memory: 5828kb
input:
100 94 7265
output:
686423239.262603
result:
ok found '686423239.2626030', expected '686423239.2626028', error '0.0000000'
Test #32:
score: 0
Accepted
time: 0ms
memory: 6120kb
input:
100 95 8469
output:
328187125.923595
result:
ok found '328187125.9235950', expected '328187125.9235951', error '0.0000000'
Test #33:
score: 0
Accepted
time: 3ms
memory: 6096kb
input:
100 96 1079
output:
492964787.625909
result:
ok found '492964787.6259090', expected '492964787.6259086', error '0.0000000'
Test #34:
score: 0
Accepted
time: 3ms
memory: 6160kb
input:
100 97 5453
output:
258652807.790656
result:
ok found '258652807.7906560', expected '258652807.7906564', error '0.0000000'
Test #35:
score: 0
Accepted
time: 3ms
memory: 5860kb
input:
100 98 1778
output:
159490192.118891
result:
ok found '159490192.1188910', expected '159490192.1188908', error '0.0000000'
Test #36:
score: 0
Accepted
time: 1ms
memory: 5988kb
input:
100 99 1825
output:
33793756.328998
result:
ok found '33793756.3289980', expected '33793756.3289980', error '0.0000000'
Test #37:
score: 0
Accepted
time: 12ms
memory: 4128kb
input:
1000 1 2453
output:
1486878333.285857
result:
ok found '1486878333.2858570', expected '1486878333.2858574', error '0.0000000'
Test #38:
score: 0
Accepted
time: 27ms
memory: 18748kb
input:
1000 1000 1798
output:
0.000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #39:
score: 0
Accepted
time: 10ms
memory: 6988kb
input:
1000 125 43
output:
1474031969.517423
result:
ok found '1474031969.5174229', expected '1474031969.5174232', error '0.0000000'
Test #40:
score: 0
Accepted
time: 23ms
memory: 7028kb
input:
1000 128 8107
output:
1440374614.939198
result:
ok found '1440374614.9391980', expected '1440374614.9391975', error '0.0000000'
Test #41:
score: 0
Accepted
time: 13ms
memory: 6128kb
input:
1000 15 6639
output:
1491336935.553625
result:
ok found '1491336935.5536251', expected '1491336935.5536251', error '0.0000000'
Test #42:
score: 0
Accepted
time: 11ms
memory: 4156kb
input:
1000 16 1251
output:
1445211807.116096
result:
ok found '1445211807.1160960', expected '1445211807.1160963', error '0.0000000'
Test #43:
score: 0
Accepted
time: 16ms
memory: 3996kb
input:
1000 2 1303
output:
1468989868.648602
result:
ok found '1468989868.6486020', expected '1468989868.6486022', error '0.0000000'
Test #44:
score: 0
Accepted
time: 17ms
memory: 9264kb
input:
1000 250 4457
output:
1487674970.766016
result:
ok found '1487674970.7660160', expected '1487674970.7660158', error '0.0000000'
Test #45:
score: 0
Accepted
time: 9ms
memory: 8308kb
input:
1000 256 4135
output:
1474218271.514077
result:
ok found '1474218271.5140769', expected '1474218271.5140772', error '0.0000000'
Test #46:
score: 0
Accepted
time: 10ms
memory: 3992kb
input:
1000 3 713
output:
1482496228.990478
result:
ok found '1482496228.9904780', expected '1482496228.9904778', error '0.0000000'
Test #47:
score: 0
Accepted
time: 13ms
memory: 4444kb
input:
1000 31 8139
output:
1494361943.479919
result:
ok found '1494361943.4799190', expected '1494361943.4799194', error '0.0000000'
Test #48:
score: 0
Accepted
time: 14ms
memory: 4480kb
input:
1000 32 7916
output:
1499333171.093865
result:
ok found '1499333171.0938649', expected '1499333171.0938647', error '0.0000000'
Test #49:
score: 0
Accepted
time: 13ms
memory: 6128kb
input:
1000 4 2432
output:
1455826569.039410
result:
ok found '1455826569.0394101', expected '1455826569.0394101', error '0.0000000'
Test #50:
score: 0
Accepted
time: 8ms
memory: 3960kb
input:
1000 5 2457
output:
1452189628.196714
result:
ok found '1452189628.1967139', expected '1452189628.1967139', error '0.0000000'
Test #51:
score: 0
Accepted
time: 21ms
memory: 13052kb
input:
1000 500 8734
output:
1432279300.566279
result:
ok found '1432279300.5662789', expected '1432279300.5662787', error '0.0000000'
Test #52:
score: 0
Accepted
time: 17ms
memory: 13428kb
input:
1000 512 1866
output:
1446804508.035187
result:
ok found '1446804508.0351870', expected '1446804508.0351865', error '0.0000000'
Test #53:
score: 0
Accepted
time: 10ms
memory: 3960kb
input:
1000 6 1580
output:
1490178756.856603
result:
ok found '1490178756.8566029', expected '1490178756.8566034', error '0.0000000'
Test #54:
score: 0
Accepted
time: 2ms
memory: 4672kb
input:
1000 62 3047
output:
1482100829.646711
result:
ok found '1482100829.6467111', expected '1482100829.6467109', error '0.0000000'
Test #55:
score: 0
Accepted
time: 12ms
memory: 4676kb
input:
1000 64 4836
output:
1441850815.855361
result:
ok found '1441850815.8553610', expected '1441850815.8553615', error '0.0000000'
Test #56:
score: 0
Accepted
time: 12ms
memory: 4260kb
input:
1000 7 5269
output:
1473104490.728798
result:
ok found '1473104490.7287979', expected '1473104490.7287984', error '0.0000000'
Test #57:
score: 0
Accepted
time: 11ms
memory: 6188kb
input:
1000 8 2649
output:
1459133296.606623
result:
ok found '1459133296.6066229', expected '1459133296.6066234', error '0.0000000'
Test #58:
score: 0
Accepted
time: 16ms
memory: 4076kb
input:
1000 9 3999
output:
1482914523.380704
result:
ok found '1482914523.3807039', expected '1482914523.3807039', error '0.0000000'
Test #59:
score: 0
Accepted
time: 22ms
memory: 17640kb
input:
1000 991 3610
output:
295501032.478087
result:
ok found '295501032.4780870', expected '295501032.4780874', error '0.0000000'
Test #60:
score: 0
Accepted
time: 22ms
memory: 17668kb
input:
1000 992 3030
output:
337274092.654038
result:
ok found '337274092.6540380', expected '337274092.6540381', error '0.0000000'
Test #61:
score: 0
Accepted
time: 33ms
memory: 17828kb
input:
1000 993 6980
output:
222375113.105799
result:
ok found '222375113.1057990', expected '222375113.1057986', error '0.0000000'
Test #62:
score: 0
Accepted
time: 53ms
memory: 17688kb
input:
1000 994 7222
output:
218007091.693304
result:
ok found '218007091.6933040', expected '218007091.6933041', error '0.0000000'
Test #63:
score: 0
Accepted
time: 28ms
memory: 17716kb
input:
1000 995 1323
output:
169577520.223653
result:
ok found '169577520.2236530', expected '169577520.2236529', error '0.0000000'
Test #64:
score: 0
Accepted
time: 25ms
memory: 17672kb
input:
1000 996 2761
output:
135524743.911446
result:
ok found '135524743.9114460', expected '135524743.9114488', error '0.0000000'
Test #65:
score: 0
Accepted
time: 25ms
memory: 17772kb
input:
1000 997 4946
output:
87043806.422792
result:
ok found '87043806.4227920', expected '87043806.4227921', error '0.0000000'
Test #66:
score: 0
Accepted
time: 25ms
memory: 17756kb
input:
1000 998 842
output:
24094936.551192
result:
ok found '24094936.5511920', expected '24094936.5511917', error '0.0000000'
Test #67:
score: 0
Accepted
time: 24ms
memory: 18264kb
input:
1000 999 5078
output:
4597519.064655
result:
ok found '4597519.0646550', expected '4597519.0646550', error '0.0000000'
Test #68:
score: 0
Accepted
time: 34ms
memory: 4364kb
input:
2000 1 2633
output:
1502350354.499527
result:
ok found '1502350354.4995270', expected '1502350354.4995270', error '0.0000000'
Test #69:
score: 0
Accepted
time: 64ms
memory: 20000kb
input:
2000 1000 6248
output:
1469507093.404211
result:
ok found '1469507093.4042110', expected '1469507093.4042110', error '0.0000000'
Test #70:
score: 0
Accepted
time: 73ms
memory: 20616kb
input:
2000 1024 2507
output:
1448066815.318479
result:
ok found '1448066815.3184791', expected '1448066815.3184788', error '0.0000000'
Test #71:
score: 0
Accepted
time: 25ms
memory: 9200kb
input:
2000 125 3002
output:
1476846542.031891
result:
ok found '1476846542.0318911', expected '1476846542.0318909', error '0.0000000'
Test #72:
score: 0
Accepted
time: 71ms
memory: 6840kb
input:
2000 128 5622
output:
1464957942.640038
result:
ok found '1464957942.6400380', expected '1464957942.6400380', error '0.0000000'
Test #73:
score: 0
Accepted
time: 41ms
memory: 4756kb
input:
2000 15 5891
output:
1490626300.155867
result:
ok found '1490626300.1558671', expected '1490626300.1558671', error '0.0000000'
Test #74:
score: 0
Accepted
time: 34ms
memory: 4520kb
input:
2000 16 1750
output:
1504400245.414981
result:
ok found '1504400245.4149809', expected '1504400245.4149806', error '0.0000000'
Test #75:
score: 0
Accepted
time: 109ms
memory: 35452kb
input:
2000 1990 6698
output:
313951388.404651
result:
ok found '313951388.4046510', expected '313951388.4046511', error '0.0000000'
Test #76:
score: 0
Accepted
time: 97ms
memory: 35404kb
input:
2000 1991 80
output:
248800118.679306
result:
ok found '248800118.6793060', expected '248800118.6793060', error '0.0000000'
Test #77:
score: 0
Accepted
time: 103ms
memory: 35524kb
input:
2000 1992 4802
output:
257156356.521677
result:
ok found '257156356.5216770', expected '257156356.5216795', error '0.0000000'
Test #78:
score: 0
Accepted
time: 106ms
memory: 35532kb
input:
2000 1993 169
output:
197117968.448225
result:
ok found '197117968.4482250', expected '197117968.4482248', error '0.0000000'
Test #79:
score: 0
Accepted
time: 130ms
memory: 35776kb
input:
2000 1994 6269
output:
109695555.808850
result:
ok found '109695555.8088500', expected '109695555.8088501', error '0.0000000'
Test #80:
score: 0
Accepted
time: 135ms
memory: 35696kb
input:
2000 1995 3452
output:
179563229.396784
result:
ok found '179563229.3967840', expected '179563229.3967843', error '0.0000000'
Test #81:
score: 0
Accepted
time: 108ms
memory: 35680kb
input:
2000 1996 2191
output:
84783513.645590
result:
ok found '84783513.6455900', expected '84783513.6455896', error '0.0000000'
Test #82:
score: 0
Accepted
time: 103ms
memory: 35828kb
input:
2000 1997 7803
output:
53635859.339990
result:
ok found '53635859.3399900', expected '53635859.3399900', error '0.0000000'
Test #83:
score: 0
Accepted
time: 90ms
memory: 35536kb
input:
2000 1998 8341
output:
33466185.814944
result:
ok found '33466185.8149440', expected '33466185.8149442', error '0.0000000'
Test #84:
score: 0
Accepted
time: 116ms
memory: 35636kb
input:
2000 1999 6773
output:
2608075.465283
result:
ok found '2608075.4652830', expected '2608075.4652833', error '0.0000000'
Test #85:
score: 0
Accepted
time: 30ms
memory: 4616kb
input:
2000 2 4496
output:
1484602254.131001
result:
ok found '1484602254.1310010', expected '1484602254.1310012', error '0.0000000'
Test #86:
score: 0
Accepted
time: 106ms
memory: 35892kb
input:
2000 2000 5384
output:
0.000000
result:
ok found '0.0000000', expected '0.0000000', error '-0.0000000'
Test #87:
score: 0
Accepted
time: 61ms
memory: 8612kb
input:
2000 250 1029
output:
1465117434.063101
result:
ok found '1465117434.0631011', expected '1465117434.0631006', error '0.0000000'
Test #88:
score: 0
Accepted
time: 52ms
memory: 9912kb
input:
2000 256 5220
output:
1481878242.218474
result:
ok found '1481878242.2184739', expected '1481878242.2184739', error '0.0000000'
Test #89:
score: 0
Accepted
time: 25ms
memory: 4416kb
input:
2000 3 8403
output:
1489320436.431853
result:
ok found '1489320436.4318531', expected '1489320436.4318533', error '0.0000000'
Test #90:
score: 0
Accepted
time: 24ms
memory: 4796kb
input:
2000 31 6950
output:
1477330995.225131
result:
ok found '1477330995.2251310', expected '1477330995.2251310', error '0.0000000'
Test #91:
score: 0
Accepted
time: 40ms
memory: 5004kb
input:
2000 32 3632
output:
1496222504.649006
result:
ok found '1496222504.6490059', expected '1496222504.6490064', error '0.0000000'
Test #92:
score: 0
Accepted
time: 30ms
memory: 4640kb
input:
2000 4 2987
output:
1477889007.505459
result:
ok found '1477889007.5054591', expected '1477889007.5054593', error '0.0000000'
Test #93:
score: 0
Accepted
time: 35ms
memory: 4488kb
input:
2000 5 2580
output:
1485468254.737495
result:
ok found '1485468254.7374949', expected '1485468254.7374952', error '0.0000000'
Test #94:
score: 0
Accepted
time: 44ms
memory: 13544kb
input:
2000 500 6270
output:
1475788271.027599
result:
ok found '1475788271.0275991', expected '1475788271.0275989', error '0.0000000'
Test #95:
score: 0
Accepted
time: 51ms
memory: 13656kb
input:
2000 512 1864
output:
1470340599.474986
result:
ok found '1470340599.4749861', expected '1470340599.4749856', error '0.0000000'
Test #96:
score: 0
Accepted
time: 48ms
memory: 4592kb
input:
2000 6 8814
output:
1497075189.013496
result:
ok found '1497075189.0134959', expected '1497075189.0134962', error '0.0000000'
Test #97:
score: 0
Accepted
time: 32ms
memory: 7160kb
input:
2000 62 4139
output:
1490927650.973212
result:
ok found '1490927650.9732120', expected '1490927650.9732120', error '0.0000000'
Test #98:
score: 0
Accepted
time: 24ms
memory: 5344kb
input:
2000 64 7700
output:
1494910912.613783
result:
ok found '1494910912.6137829', expected '1494910912.6137834', error '0.0000000'
Test #99:
score: 0
Accepted
time: 40ms
memory: 4748kb
input:
2000 7 8304
output:
1488325857.821990
result:
ok found '1488325857.8219900', expected '1488325857.8219898', error '0.0000000'
Test #100:
score: 0
Accepted
time: 34ms
memory: 4472kb
input:
2000 8 7774
output:
1507136513.171559
result:
ok found '1507136513.1715591', expected '1507136513.1715591', error '0.0000000'
Test #101:
score: 0
Accepted
time: 41ms
memory: 4540kb
input:
2000 9 2618
output:
1492019659.037316
result:
ok found '1492019659.0373161', expected '1492019659.0373163', error '0.0000000'
Test #102:
score: 0
Accepted
time: 4ms
memory: 3676kb
input:
500 1 7674
output:
1463672939.781250
result:
ok found '1463672939.7812500', expected '1463672939.7812500', error '0.0000000'
Test #103:
score: 0
Accepted
time: 8ms
memory: 6324kb
input:
500 125 1629
output:
1420736329.083827
result:
ok found '1420736329.0838270', expected '1420736329.0838273', error '0.0000000'
Test #104:
score: 0
Accepted
time: 5ms
memory: 3980kb
input:
500 15 7376
output:
1465677415.506388
result:
ok found '1465677415.5063879', expected '1465677415.5063879', error '0.0000000'
Test #105:
score: 0
Accepted
time: 8ms
memory: 8340kb
input:
500 250 5627
output:
1411074935.882358
result:
ok found '1411074935.8823581', expected '1411074935.8823581', error '0.0000000'
Test #106:
score: 0
Accepted
time: 5ms
memory: 3676kb
input:
500 3 2245
output:
1437079231.540981
result:
ok found '1437079231.5409811', expected '1437079231.5409811', error '0.0000000'
Test #107:
score: 0
Accepted
time: 5ms
memory: 3980kb
input:
500 31 8072
output:
1487957912.031461
result:
ok found '1487957912.0314610', expected '1487957912.0314612', error '0.0000000'
Test #108:
score: 0
Accepted
time: 6ms
memory: 5992kb
input:
500 62 2415
output:
1454787477.649377
result:
ok found '1454787477.6493771', expected '1454787477.6493773', error '0.0000000'
Test #109:
score: 0
Accepted
time: 2ms
memory: 3748kb
input:
500 7 1586
output:
1459900114.704661
result:
ok found '1459900114.7046609', expected '1459900114.7046607', error '0.0000000'