QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#650731#5667. Meeting PlacesXfJbUhpyzgaW#AC ✓206ms5548kbC++143.2kb2024-10-18 16:17:192024-10-18 16:17:19

Judging History

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

  • [2024-10-18 16:17:19]
  • 评测
  • 测评结果:AC
  • 用时:206ms
  • 内存:5548kb
  • [2024-10-18 16:17:19]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

const int N = 2100;
int n, k;
double x[N], y[N];
uint64_t seed;
int gen() {
    int ret = seed;
    seed = (seed * 233811181 + 1) % 0x7fffffff;
    return ret;
}

const double eps = 1e-12;
double len2(double x, double y) {
    return x * x + y * y;
}
struct circ {
    double x0, y0, r2;
    bool check(double x, double y) {
        return len2(x0 - x, y0 - y) <= r2 * (1 + eps);
    }
};

circ outer_circ(int i, int j, int k) {
    double tx[3] = {x[i], x[j], x[k]}, ty[3] = {y[i], y[j], y[k]};
    double a[3][4];
    for (int i = 0; i < 3; i++) {
        a[i][0] = 2 * tx[i];
        a[i][1] = 2 * ty[i];
        a[i][2] = 1;
        a[i][3] = len2(tx[i], ty[i]);
    }
    for (int i = 0; i < 3; i++) {
        int p = i;
        for (int j = i + 1; j < 3; j++) if (abs(a[j][i]) > abs(a[p][i])) p = j;
        swap(a[p], a[i]);
        auto k = 1 / a[i][i];
        for (int j = i; j < 4; j++) a[i][j] *= k;
        for (int j = 0; j < 3; j++) if (j != i) {
            auto t = a[j][i];
            for (int k = i; k < 4; k++) a[j][k] -= a[i][k] * t;
        }
    }
    double x0 = a[0][3], y0 = a[1][3], r2 = a[2][3] + len2(x0, y0);
    return {x0, y0, r2};
}
circ get_circ(int l, int r) {
    circ c = {x[l], y[l], 0};
    for (int i = l + 1; i <= r; i++) {
        if (c.check(x[i], y[i])) continue;
        c = {(x[i] + x[l]) * .5, (y[i] + y[l]) * .5, len2(x[i] - x[l], y[i] - y[l]) * .25};
        for (int j = l + 1; j < i; j++) if (!c.check(x[j], y[j]))
            c = outer_circ(l, j, i);
    }
    return c;
}

struct info {
    int l, r;
    double x;
    int k;
};
vector<info> buc[N];

double dp[2][N];

double st[12][N];

int main() {
    cin.tie(0)->sync_with_stdio(0), cout.tie(0);
    cin >> n >> k >> seed;
    for (int i = 1; i <= n; i++) {
        x[i] = gen();
        y[i] = gen();
    }

    for (int i = n; i >= 1; i--) {
        circ c = {x[i], y[i], 0};
        int r = i;
        for (int j = i - 1; j; j--) {
            if (c.check(x[j], y[j])) continue;
            buc[i].push_back(info{j + 1, r, sqrt(c.r2)});
            c = get_circ(j, i);
            r = j;
        }
        buc[i].push_back(info{1, r, sqrt(c.r2)});

        for (auto &x: buc[i]) {
            x.k = 31 - __builtin_clz(x.r - x.l + 1);
            x.r -= (1 << x.k) - 1;
        }
    }
    for (int i = 0; i <= n; i++) dp[0][i] = dp[1][i] = 1e30;
    dp[0][0] = 0;
    for (int i = 1; i <= k; i++) {
        auto &f = dp[i & 1], &g = dp[1 ^ i & 1];
        for (int j = 1; j <= n; j++) f[j] = 1e30;
        
        for (int i = 0; i <= n; i++) st[0][i] = g[i];
        for (int j = 0; j < 11; j++)
            for (int i = 0; i + (2 << j) <= n; i++)
                st[j + 1][i] = min(st[j][i], st[j][i + (1 << j)]);

        for (int j = 1; j <= n; j++) {
            for (const auto &i: buc[j]) {
                double mn = min(st[i.k][i.l - 1], st[i.k][i.r - 1]);
                //for (int k = i.l; k <= i.r; k++) mn = min(mn, g[k - 1]);
                f[j] = min(f[j], mn + i.x);
            }
        }
    }
    cout << fixed << setprecision(13) << dp[k & 1][n] << "\n";
}

詳細信息

Test #1:

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

input:

100 23 213

output:

1319350480.8007326126099

result:

ok found '1319350480.8007326', expected '1319350480.8007326', error '0.0000000'

Test #2:

score: 0
Accepted
time: 1ms
memory: 4068kb

input:

10 1 1060

output:

1042753143.3451676368713

result:

ok found '1042753143.3451676', expected '1042753143.3451676', error '0.0000000'

Test #3:

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

input:

10 10 2373

output:

0.0000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #4:

score: 0
Accepted
time: 1ms
memory: 4032kb

input:

10 2 3396

output:

1236610536.9469230175018

result:

ok found '1236610536.9469230', expected '1236610536.9469230', error '0.0000000'

Test #5:

score: 0
Accepted
time: 1ms
memory: 4080kb

input:

10 3 1998

output:

973790809.8224442005157

result:

ok found '973790809.8224442', expected '973790809.8224442', error '0.0000000'

Test #6:

score: 0
Accepted
time: 1ms
memory: 3952kb

input:

10 4 562

output:

910867389.9069327116013

result:

ok found '910867389.9069327', expected '910867389.9069330', error '0.0000000'

Test #7:

score: 0
Accepted
time: 1ms
memory: 4016kb

input:

10 5 6048

output:

818240814.7105150222778

result:

ok found '818240814.7105150', expected '818240814.7105150', error '0.0000000'

Test #8:

score: 0
Accepted
time: 1ms
memory: 3760kb

input:

10 6 2524

output:

500106979.3467763662338

result:

ok found '500106979.3467764', expected '500106979.3467762', error '0.0000000'

Test #9:

score: 0
Accepted
time: 1ms
memory: 4068kb

input:

10 7 5415

output:

559478971.4320058822632

result:

ok found '559478971.4320059', expected '559478971.4320059', error '0.0000000'

Test #10:

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

input:

10 8 1438

output:

500309745.4627699851990

result:

ok found '500309745.4627700', expected '500309745.4627700', error '0.0000000'

Test #11:

score: 0
Accepted
time: 1ms
memory: 3952kb

input:

10 9 3172

output:

162279748.8753451704979

result:

ok found '162279748.8753452', expected '162279748.8753452', error '0.0000000'

Test #12:

score: 0
Accepted
time: 1ms
memory: 4064kb

input:

100 1 8316

output:

1320052902.1522903442383

result:

ok found '1320052902.1522903', expected '1320052902.1522903', error '0.0000000'

Test #13:

score: 0
Accepted
time: 1ms
memory: 4012kb

input:

100 100 4179

output:

0.0000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #14:

score: 0
Accepted
time: 1ms
memory: 4120kb

input:

100 12 3405

output:

1329687126.1304550170898

result:

ok found '1329687126.1304550', expected '1329687126.1304548', error '0.0000000'

Test #15:

score: 0
Accepted
time: 1ms
memory: 4056kb

input:

100 16 8378

output:

1338056514.4842693805695

result:

ok found '1338056514.4842694', expected '1338056514.4842694', error '0.0000000'

Test #16:

score: 0
Accepted
time: 1ms
memory: 4064kb

input:

100 2 1858

output:

1310392496.1430580615997

result:

ok found '1310392496.1430581', expected '1310392496.1430581', error '0.0000000'

Test #17:

score: 0
Accepted
time: 1ms
memory: 4080kb

input:

100 25 4596

output:

1440464106.6229298114777

result:

ok found '1440464106.6229298', expected '1440464106.6229298', error '0.0000000'

Test #18:

score: 0
Accepted
time: 1ms
memory: 3796kb

input:

100 3 5633

output:

1399621082.6142737865448

result:

ok found '1399621082.6142738', expected '1399621082.6142738', error '0.0000000'

Test #19:

score: 0
Accepted
time: 1ms
memory: 4060kb

input:

100 32 7827

output:

1342073760.5322329998016

result:

ok found '1342073760.5322330', expected '1342073760.5322330', error '0.0000000'

Test #20:

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

input:

100 4 3693

output:

1339808706.7098686695099

result:

ok found '1339808706.7098687', expected '1339808706.7098689', error '0.0000000'

Test #21:

score: 0
Accepted
time: 1ms
memory: 4128kb

input:

100 5 2252

output:

1394874243.5057041645050

result:

ok found '1394874243.5057042', expected '1394874243.5057042', error '0.0000000'

Test #22:

score: 0
Accepted
time: 1ms
memory: 4004kb

input:

100 50 4254

output:

1322809748.4052834510803

result:

ok found '1322809748.4052835', expected '1322809748.4052832', error '0.0000000'

Test #23:

score: 0
Accepted
time: 1ms
memory: 4064kb

input:

100 6 53

output:

1364441356.1700985431671

result:

ok found '1364441356.1700985', expected '1364441356.1700988', error '0.0000000'

Test #24:

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

input:

100 64 4337

output:

1180754550.2422838211060

result:

ok found '1180754550.2422838', expected '1180754550.2422838', error '0.0000000'

Test #25:

score: 0
Accepted
time: 1ms
memory: 3996kb

input:

100 7 5366

output:

1423557626.3586797714233

result:

ok found '1423557626.3586798', expected '1423557626.3586798', error '0.0000000'

Test #26:

score: 0
Accepted
time: 1ms
memory: 3996kb

input:

100 8 8509

output:

1353289305.3519957065582

result:

ok found '1353289305.3519957', expected '1353289305.3519957', error '0.0000000'

Test #27:

score: 0
Accepted
time: 1ms
memory: 4020kb

input:

100 9 1423

output:

1228887266.5661668777466

result:

ok found '1228887266.5661669', expected '1228887266.5661671', error '0.0000000'

Test #28:

score: 0
Accepted
time: 1ms
memory: 4112kb

input:

100 91 4806

output:

656574218.5086758136749

result:

ok found '656574218.5086758', expected '656574218.5086756', error '0.0000000'

Test #29:

score: 0
Accepted
time: 1ms
memory: 4008kb

input:

100 92 4024

output:

794693428.6162244081497

result:

ok found '794693428.6162244', expected '794693428.6162238', error '0.0000000'

Test #30:

score: 0
Accepted
time: 1ms
memory: 4064kb

input:

100 93 606

output:

677641787.4863123893738

result:

ok found '677641787.4863124', expected '677641787.4863122', error '0.0000000'

Test #31:

score: 0
Accepted
time: 1ms
memory: 4052kb

input:

100 94 7265

output:

686423239.2626028060913

result:

ok found '686423239.2626028', expected '686423239.2626028', error '0.0000000'

Test #32:

score: 0
Accepted
time: 1ms
memory: 4124kb

input:

100 95 8469

output:

328187125.9235950708389

result:

ok found '328187125.9235951', expected '328187125.9235951', error '0.0000000'

Test #33:

score: 0
Accepted
time: 1ms
memory: 4064kb

input:

100 96 1079

output:

492964787.6259079575539

result:

ok found '492964787.6259080', expected '492964787.6259086', error '0.0000000'

Test #34:

score: 0
Accepted
time: 1ms
memory: 4080kb

input:

100 97 5453

output:

258652807.7906554937363

result:

ok found '258652807.7906555', expected '258652807.7906564', error '0.0000000'

Test #35:

score: 0
Accepted
time: 1ms
memory: 4004kb

input:

100 98 1778

output:

159490192.1188900172710

result:

ok found '159490192.1188900', expected '159490192.1188908', error '0.0000000'

Test #36:

score: 0
Accepted
time: 1ms
memory: 4056kb

input:

100 99 1825

output:

33793756.3289980441332

result:

ok found '33793756.3289980', expected '33793756.3289980', error '0.0000000'

Test #37:

score: 0
Accepted
time: 12ms
memory: 4684kb

input:

1000 1 2453

output:

1486878333.2858574390411

result:

ok found '1486878333.2858574', expected '1486878333.2858574', error '0.0000000'

Test #38:

score: 0
Accepted
time: 37ms
memory: 4712kb

input:

1000 1000 1798

output:

0.0000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #39:

score: 0
Accepted
time: 14ms
memory: 4600kb

input:

1000 125 43

output:

1474031969.5174233913422

result:

ok found '1474031969.5174234', expected '1474031969.5174232', error '0.0000000'

Test #40:

score: 0
Accepted
time: 20ms
memory: 4792kb

input:

1000 128 8107

output:

1440374614.9391977787018

result:

ok found '1440374614.9391978', expected '1440374614.9391975', error '0.0000000'

Test #41:

score: 0
Accepted
time: 16ms
memory: 4500kb

input:

1000 15 6639

output:

1491336935.5536251068115

result:

ok found '1491336935.5536251', expected '1491336935.5536251', error '0.0000000'

Test #42:

score: 0
Accepted
time: 7ms
memory: 4500kb

input:

1000 16 1251

output:

1445211807.1160962581635

result:

ok found '1445211807.1160963', expected '1445211807.1160963', error '0.0000000'

Test #43:

score: 0
Accepted
time: 13ms
memory: 4520kb

input:

1000 2 1303

output:

1468989868.6486022472382

result:

ok found '1468989868.6486022', expected '1468989868.6486022', error '0.0000000'

Test #44:

score: 0
Accepted
time: 14ms
memory: 4660kb

input:

1000 250 4457

output:

1487674970.7660160064697

result:

ok found '1487674970.7660160', expected '1487674970.7660158', error '0.0000000'

Test #45:

score: 0
Accepted
time: 18ms
memory: 4492kb

input:

1000 256 4135

output:

1474218271.5140771865845

result:

ok found '1474218271.5140772', expected '1474218271.5140772', error '0.0000000'

Test #46:

score: 0
Accepted
time: 8ms
memory: 4508kb

input:

1000 3 713

output:

1482496228.9904780387878

result:

ok found '1482496228.9904780', expected '1482496228.9904778', error '0.0000000'

Test #47:

score: 0
Accepted
time: 15ms
memory: 4632kb

input:

1000 31 8139

output:

1494361943.4799194335938

result:

ok found '1494361943.4799194', expected '1494361943.4799194', error '0.0000000'

Test #48:

score: 0
Accepted
time: 15ms
memory: 4752kb

input:

1000 32 7916

output:

1499333171.0938646793365

result:

ok found '1499333171.0938647', expected '1499333171.0938647', error '0.0000000'

Test #49:

score: 0
Accepted
time: 13ms
memory: 4720kb

input:

1000 4 2432

output:

1455826569.0394098758698

result:

ok found '1455826569.0394099', expected '1455826569.0394101', error '0.0000000'

Test #50:

score: 0
Accepted
time: 11ms
memory: 4376kb

input:

1000 5 2457

output:

1452189628.1967139244080

result:

ok found '1452189628.1967139', expected '1452189628.1967139', error '0.0000000'

Test #51:

score: 0
Accepted
time: 26ms
memory: 4680kb

input:

1000 500 8734

output:

1432279300.5662784576416

result:

ok found '1432279300.5662785', expected '1432279300.5662787', error '0.0000000'

Test #52:

score: 0
Accepted
time: 22ms
memory: 4644kb

input:

1000 512 1866

output:

1446804508.0351865291595

result:

ok found '1446804508.0351865', expected '1446804508.0351865', error '0.0000000'

Test #53:

score: 0
Accepted
time: 8ms
memory: 4620kb

input:

1000 6 1580

output:

1490178756.8566033840179

result:

ok found '1490178756.8566034', expected '1490178756.8566034', error '0.0000000'

Test #54:

score: 0
Accepted
time: 13ms
memory: 4560kb

input:

1000 62 3047

output:

1482100829.6467111110687

result:

ok found '1482100829.6467111', expected '1482100829.6467109', error '0.0000000'

Test #55:

score: 0
Accepted
time: 12ms
memory: 4592kb

input:

1000 64 4836

output:

1441850815.8553614616394

result:

ok found '1441850815.8553615', expected '1441850815.8553615', error '0.0000000'

Test #56:

score: 0
Accepted
time: 12ms
memory: 4628kb

input:

1000 7 5269

output:

1473104490.7287981510162

result:

ok found '1473104490.7287982', expected '1473104490.7287984', error '0.0000000'

Test #57:

score: 0
Accepted
time: 11ms
memory: 4388kb

input:

1000 8 2649

output:

1459133296.6066234111786

result:

ok found '1459133296.6066234', expected '1459133296.6066234', error '0.0000000'

Test #58:

score: 0
Accepted
time: 9ms
memory: 4648kb

input:

1000 9 3999

output:

1482914523.3807039260864

result:

ok found '1482914523.3807039', expected '1482914523.3807039', error '0.0000000'

Test #59:

score: 0
Accepted
time: 38ms
memory: 4648kb

input:

1000 991 3610

output:

295501032.4780874252319

result:

ok found '295501032.4780874', expected '295501032.4780874', error '0.0000000'

Test #60:

score: 0
Accepted
time: 39ms
memory: 4516kb

input:

1000 992 3030

output:

337274092.6540381312370

result:

ok found '337274092.6540381', expected '337274092.6540381', error '0.0000000'

Test #61:

score: 0
Accepted
time: 37ms
memory: 4600kb

input:

1000 993 6980

output:

222375113.1057986021042

result:

ok found '222375113.1057986', expected '222375113.1057986', error '0.0000000'

Test #62:

score: 0
Accepted
time: 41ms
memory: 4736kb

input:

1000 994 7222

output:

218007091.6933040916920

result:

ok found '218007091.6933041', expected '218007091.6933041', error '0.0000000'

Test #63:

score: 0
Accepted
time: 41ms
memory: 4720kb

input:

1000 995 1323

output:

169577520.2236528992653

result:

ok found '169577520.2236529', expected '169577520.2236529', error '0.0000000'

Test #64:

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

input:

1000 996 2761

output:

135524743.9114512801170

result:

ok found '135524743.9114513', expected '135524743.9114488', error '0.0000000'

Test #65:

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

input:

1000 997 4946

output:

87043806.4227920770645

result:

ok found '87043806.4227921', expected '87043806.4227921', error '0.0000000'

Test #66:

score: 0
Accepted
time: 33ms
memory: 4516kb

input:

1000 998 842

output:

24094936.5511916875839

result:

ok found '24094936.5511917', expected '24094936.5511917', error '0.0000000'

Test #67:

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

input:

1000 999 5078

output:

4597519.0646550338715

result:

ok found '4597519.0646550', expected '4597519.0646550', error '0.0000000'

Test #68:

score: 0
Accepted
time: 25ms
memory: 5060kb

input:

2000 1 2633

output:

1502350354.4995269775391

result:

ok found '1502350354.4995270', expected '1502350354.4995270', error '0.0000000'

Test #69:

score: 0
Accepted
time: 96ms
memory: 5092kb

input:

2000 1000 6248

output:

1469507093.4042110443115

result:

ok found '1469507093.4042110', expected '1469507093.4042110', error '0.0000000'

Test #70:

score: 0
Accepted
time: 117ms
memory: 5300kb

input:

2000 1024 2507

output:

1448066815.3184788227081

result:

ok found '1448066815.3184788', expected '1448066815.3184788', error '0.0000000'

Test #71:

score: 0
Accepted
time: 35ms
memory: 5264kb

input:

2000 125 3002

output:

1476846542.0318911075592

result:

ok found '1476846542.0318911', expected '1476846542.0318909', error '0.0000000'

Test #72:

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

input:

2000 128 5622

output:

1464957942.6400380134583

result:

ok found '1464957942.6400380', expected '1464957942.6400380', error '0.0000000'

Test #73:

score: 0
Accepted
time: 32ms
memory: 5284kb

input:

2000 15 5891

output:

1490626300.1558670997620

result:

ok found '1490626300.1558671', expected '1490626300.1558671', error '0.0000000'

Test #74:

score: 0
Accepted
time: 30ms
memory: 5236kb

input:

2000 16 1750

output:

1504400245.4149804115295

result:

ok found '1504400245.4149804', expected '1504400245.4149806', error '0.0000000'

Test #75:

score: 0
Accepted
time: 170ms
memory: 5344kb

input:

2000 1990 6698

output:

313951388.4046511054039

result:

ok found '313951388.4046511', expected '313951388.4046511', error '0.0000000'

Test #76:

score: 0
Accepted
time: 152ms
memory: 5136kb

input:

2000 1991 80

output:

248800118.6793060302734

result:

ok found '248800118.6793060', expected '248800118.6793060', error '0.0000000'

Test #77:

score: 0
Accepted
time: 184ms
memory: 5388kb

input:

2000 1992 4802

output:

257156356.5216803252697

result:

ok found '257156356.5216803', expected '257156356.5216795', error '0.0000000'

Test #78:

score: 0
Accepted
time: 181ms
memory: 5364kb

input:

2000 1993 169

output:

197117968.4482247829437

result:

ok found '197117968.4482248', expected '197117968.4482248', error '0.0000000'

Test #79:

score: 0
Accepted
time: 206ms
memory: 5492kb

input:

2000 1994 6269

output:

109695555.8088501095772

result:

ok found '109695555.8088501', expected '109695555.8088501', error '0.0000000'

Test #80:

score: 0
Accepted
time: 193ms
memory: 5468kb

input:

2000 1995 3452

output:

179563229.3967843055725

result:

ok found '179563229.3967843', expected '179563229.3967843', error '0.0000000'

Test #81:

score: 0
Accepted
time: 175ms
memory: 5268kb

input:

2000 1996 2191

output:

84783513.6455895751715

result:

ok found '84783513.6455896', expected '84783513.6455896', error '0.0000000'

Test #82:

score: 0
Accepted
time: 193ms
memory: 5364kb

input:

2000 1997 7803

output:

53635859.3399899750948

result:

ok found '53635859.3399900', expected '53635859.3399900', error '0.0000000'

Test #83:

score: 0
Accepted
time: 156ms
memory: 5080kb

input:

2000 1998 8341

output:

33466185.8149442300200

result:

ok found '33466185.8149442', expected '33466185.8149442', error '0.0000000'

Test #84:

score: 0
Accepted
time: 177ms
memory: 5376kb

input:

2000 1999 6773

output:

2608075.4652832611464

result:

ok found '2608075.4652833', expected '2608075.4652833', error '0.0000000'

Test #85:

score: 0
Accepted
time: 27ms
memory: 5148kb

input:

2000 2 4496

output:

1484602254.1310012340546

result:

ok found '1484602254.1310012', expected '1484602254.1310012', error '0.0000000'

Test #86:

score: 0
Accepted
time: 179ms
memory: 5316kb

input:

2000 2000 5384

output:

0.0000000000000

result:

ok found '0.0000000', expected '0.0000000', error '-0.0000000'

Test #87:

score: 0
Accepted
time: 62ms
memory: 5512kb

input:

2000 250 1029

output:

1465117434.0631005764008

result:

ok found '1465117434.0631006', expected '1465117434.0631006', error '0.0000000'

Test #88:

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

input:

2000 256 5220

output:

1481878242.2184739112854

result:

ok found '1481878242.2184739', expected '1481878242.2184739', error '0.0000000'

Test #89:

score: 0
Accepted
time: 29ms
memory: 5124kb

input:

2000 3 8403

output:

1489320436.4318532943726

result:

ok found '1489320436.4318533', expected '1489320436.4318533', error '0.0000000'

Test #90:

score: 0
Accepted
time: 31ms
memory: 5336kb

input:

2000 31 6950

output:

1477330995.2251310348511

result:

ok found '1477330995.2251310', expected '1477330995.2251310', error '0.0000000'

Test #91:

score: 0
Accepted
time: 27ms
memory: 5420kb

input:

2000 32 3632

output:

1496222504.6490063667297

result:

ok found '1496222504.6490064', expected '1496222504.6490064', error '0.0000000'

Test #92:

score: 0
Accepted
time: 26ms
memory: 5240kb

input:

2000 4 2987

output:

1477889007.5054590702057

result:

ok found '1477889007.5054591', expected '1477889007.5054593', error '0.0000000'

Test #93:

score: 0
Accepted
time: 34ms
memory: 5412kb

input:

2000 5 2580

output:

1485468254.7374951839447

result:

ok found '1485468254.7374952', expected '1485468254.7374952', error '0.0000000'

Test #94:

score: 0
Accepted
time: 64ms
memory: 5288kb

input:

2000 500 6270

output:

1475788271.0275988578796

result:

ok found '1475788271.0275989', expected '1475788271.0275989', error '0.0000000'

Test #95:

score: 0
Accepted
time: 71ms
memory: 5340kb

input:

2000 512 1864

output:

1470340599.4749858379364

result:

ok found '1470340599.4749858', expected '1470340599.4749856', error '0.0000000'

Test #96:

score: 0
Accepted
time: 30ms
memory: 5388kb

input:

2000 6 8814

output:

1497075189.0134961605072

result:

ok found '1497075189.0134962', expected '1497075189.0134962', error '0.0000000'

Test #97:

score: 0
Accepted
time: 35ms
memory: 5092kb

input:

2000 62 4139

output:

1490927650.9732120037079

result:

ok found '1490927650.9732120', expected '1490927650.9732120', error '0.0000000'

Test #98:

score: 0
Accepted
time: 26ms
memory: 5316kb

input:

2000 64 7700

output:

1494910912.6137833595276

result:

ok found '1494910912.6137834', expected '1494910912.6137834', error '0.0000000'

Test #99:

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

input:

2000 7 8304

output:

1488325857.8219895362854

result:

ok found '1488325857.8219895', expected '1488325857.8219898', error '0.0000000'

Test #100:

score: 0
Accepted
time: 30ms
memory: 5332kb

input:

2000 8 7774

output:

1507136513.1715590953827

result:

ok found '1507136513.1715591', expected '1507136513.1715591', error '0.0000000'

Test #101:

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

input:

2000 9 2618

output:

1492019659.0373163223267

result:

ok found '1492019659.0373163', expected '1492019659.0373163', error '0.0000000'

Test #102:

score: 0
Accepted
time: 3ms
memory: 4292kb

input:

500 1 7674

output:

1463672939.7812497615814

result:

ok found '1463672939.7812498', expected '1463672939.7812500', error '0.0000000'

Test #103:

score: 0
Accepted
time: 6ms
memory: 4340kb

input:

500 125 1629

output:

1420736329.0838274955750

result:

ok found '1420736329.0838275', expected '1420736329.0838273', error '0.0000000'

Test #104:

score: 0
Accepted
time: 4ms
memory: 4364kb

input:

500 15 7376

output:

1465677415.5063879489899

result:

ok found '1465677415.5063879', expected '1465677415.5063879', error '0.0000000'

Test #105:

score: 0
Accepted
time: 7ms
memory: 4320kb

input:

500 250 5627

output:

1411074935.8823575973511

result:

ok found '1411074935.8823576', expected '1411074935.8823581', error '0.0000000'

Test #106:

score: 0
Accepted
time: 5ms
memory: 4048kb

input:

500 3 2245

output:

1437079231.5409810543060

result:

ok found '1437079231.5409811', expected '1437079231.5409811', error '0.0000000'

Test #107:

score: 0
Accepted
time: 4ms
memory: 4232kb

input:

500 31 8072

output:

1487957912.0314617156982

result:

ok found '1487957912.0314617', expected '1487957912.0314612', error '0.0000000'

Test #108:

score: 0
Accepted
time: 5ms
memory: 4356kb

input:

500 62 2415

output:

1454787477.6493773460388

result:

ok found '1454787477.6493773', expected '1454787477.6493773', error '0.0000000'

Test #109:

score: 0
Accepted
time: 4ms
memory: 4292kb

input:

500 7 1586

output:

1459900114.7046608924866

result:

ok found '1459900114.7046609', expected '1459900114.7046607', error '0.0000000'