QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#607096#6423. Fireworkskarito#AC ✓869ms3924kbC++20598b2024-10-03 13:54:222024-10-03 13:54:23

Judging History

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

  • [2024-10-03 13:54:23]
  • 评测
  • 测评结果:AC
  • 用时:869ms
  • 内存:3924kb
  • [2024-10-03 13:54:22]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n,m;
int p;
const long double esp = 1e-5;
void solve(){
    cin>>n>>m>>p;
    long double q = 1.0-(p/10000.0);
    long double t = q;
    long double ans = 1.0*(n+m)/(1-q);
    for(int i=2;i<=100000;i++){
        q*=t;
        ans=min(ans,1.0*(n*i+m)/(1-q));        
        if(q<esp) break;
    }
    cout<<ans<<endl;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout<<fixed<<setprecision(10);
    int T;
    cin >> T;
    while(T--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3868kb

input:

3
1 1 5000
1 1 1
1 2 10000

output:

4.0000000000
10141.5852891147
3.0000000000

result:

ok 3 numbers

Test #2:

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

input:

20
10 27 2855
79 59 6888
65 72 7725
78 50 2888
31 21 5759
41 58 6619
47 27 3881
35 55 5095
77 7 6028
17 89 1792
84 60 8604
58 44 4923
88 27 3824
54 63 1482
19 42 5366
93 76 97
100 99 8660
96 36 4343
90 56 9515
24 44 9922

output:

89.7298056505
200.3484320557
177.3462783172
416.8398778004
90.2934537246
149.5694213627
190.6725070858
164.6015211156
139.3497013935
275.1331102484
167.3640167364
207.1907373553
300.7322175732
589.0588489505
101.8770282124
10796.8872669046
229.7921478060
303.9373704812
153.4419337888
68.5345696432

result:

ok 20 numbers

Test #3:

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

input:

10
954269343 987322500 9806
916720797 981711601 9728
902477101 957414437 9250
967013471 988735825 9674
985383693 926528961 9411
970653208 917703218 9331
998423148 911924940 9283
986159007 902133513 9759
953796828 947934512 9959
995334734 931874197 9944

output:

1980003919.0291657620
1951513567.0230263197
2010693554.5945944980
2021655257.3909447218
2031572260.1211347395
2023744964.0981673112
2057899480.7713023496
1934924193.0525668818
1909560538.2066472394
1938062078.6403862587

result:

ok 10 numbers

Test #4:

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

input:

10
933722894 72 9673
975866948 5 9424
910984544 95 9682
994597175 6 9351
972675086 51 9712
952759975 51 9114
956482031 85 9478
921988922 72 9017
950640658 36 9893
965297247 78 9342

output:

965287879.6650469896
1035512471.3497453141
940905431.7289816644
1063626543.6851673137
1001518880.7660626522
1045380761.4658766871
1009160282.7600759911
1022500825.1081291508
960922565.4503184485
1033287652.5369299600

result:

ok 10 numbers

Test #5:

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

input:

10
910088095 81 316
970640211 35 537
908853334 41 89
932269507 8 457
953224740 22 113
959834859 69 34
924852390 63 115
952730384 97 382
917634328 91 20
937287266 32 654

output:

28800258734.1772503220
18075237355.6797121540
102118356741.5728156194
20399770568.9278065059
84356173628.3187577873
282304390588.2387306988
80421952434.7829254642
24940588507.8533954863
458817209499.9995924830
14331610061.1620765133

result:

ok 10 numbers

Test #6:

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

input:

10
968675373 962412132 104
923494255 934310785 381
922721350 957856460 282
978335370 917228676 825
951116860 942542480 359
999013758 972493824 676
930242700 964474169 342
968944030 984608304 520
965837594 909045242 369
990484700 925952624 479

output:

106669104052.2946245372
31076848077.7610951662
40771434362.8951427862
16579259543.3635301348
33660076568.7019111142
20209258011.5019230451
34581380127.3951007910
24798113234.3329408597
33145494087.7282517031
26925682159.1200789101

result:

ok 10 numbers

Test #7:

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

input:

10
22 972733171 975
22 973609752 512
55 987399854 126
49 967364929 642
23 948126474 513
25 962813818 421
93 933323422 113
58 950364131 647
82 991906690 682
31 957667404 402

output:

972744642.3219495047
973623856.4561739292
987459663.0407519836
967382818.6997350014
948140802.8472943553
962830009.9633258047
933426960.7241756669
950383127.1118366616
991929966.1928715672
957685534.1657663775

result:

ok 10 numbers

Test #8:

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

input:

10
47 972371220 9743
65 949941115 9400
86 921812690 9736
11 927065494 9182
71 923766617 9378
63 941828720 9029
96 917539847 9084
88 952051332 9499
91 958386812 9427
64 950375055 9887

output:

972371832.1943336714
949942178.6750381377
921813481.7738869222
927068944.3031105701
923767832.0322923739
941837164.6523306588
917546244.0512394985
952057682.1063964294
958387858.9900580682
950376618.2955714088

result:

ok 10 numbers

Test #9:

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

input:

10
98 46 9403
99 89 9661
80 62 9450
25 20 9283
68 74 9328
54 14 9286
4 80 9574
35 61 9420
77 47 9943
22 9 9358

output:

153.1426140593
194.5968326260
150.2645502646
48.4757082840
152.2298456261
73.2285160457
87.7376227282
101.9108280255
124.7108518556
33.1267364822

result:

ok 10 numbers

Test #10:

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

input:

10
89 77 65
53 41 913
47 67 488
89 13 267
20 60 427
58 72 690
23 60 677
43 38 775
52 68 343
83 61 805

output:

15149.2838382387
795.1959596787
1340.2626103173
3590.6475047324
734.4631078246
1204.0440417989
568.4325370470
761.4534497617
1986.6695583741
1378.1584483391

result:

ok 10 numbers

Test #11:

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

input:

20
5 1000000000 4
3 999999979 5
5 1000000000 2
2 999999999 4
3 999999983 1
3 999999984 1
3 999999987 3
3 999999974 1
2 999999998 1
1 999999981 2
4 999999971 4
3 999999992 1
5 999999973 4
4 999999984 4
3 999999972 4
2 999999994 4
2 999999980 5
4 999999970 5
2 999999980 2
4 999999983 4

output:

1000153595.9668460697
1000079038.2598550068
1000289896.6213884591
1000067551.9024652222
1000345375.9061623089
1000345376.9062076882
1000125100.2351724209
1000345366.9057538952
1000245386.3689136837
1000067540.4167046194
1000125078.4776289830
1000345384.9065707225
1000153568.9665087262
1000125091.477...

result:

ok 20 numbers

Test #12:

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

input:

10000
15 999999991 6
16 999999975 2
12 999999978 9
7 999999993 4
19 999999980 5
20 999999977 5
13 999999995 10
11 999999979 6
19 999999995 5
6 999999982 10
15 999999978 1
2 999999974 5
12 999999980 4
18 999999997 1
12 999999992 10
20 999999970 6
2 999999999 2
13 999999984 1
16 999999984 2
16 9999999...

output:

1000289834.6274338003
1000834644.9803736407
1000162916.0544203165
1000209141.2387603903
1000424660.5573017059
1000444958.7589436295
1000159181.2223668231
1000218214.1490877106
1000424675.5578713741
1000079022.4692913839
1001470863.7083150767
1000056012.0296970179
1000342357.1715582845
1001732290.589...

result:

ok 10000 numbers

Test #13:

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

input:

50
3 999999983 9
8 999999973 7
6 999999988 9
17 999999995 10
19 999999993 6
13 999999989 6
17 999999995 1
8 999999999 7
9 999999971 3
15 999999986 8
2 1000000000 8
9 999999975 4
8 999999980 2
4 999999970 9
2 999999990 10
8 999999983 3
15 999999985 5
16 999999991 7
20 999999986 5
15 999999990 6
15 99...

output:

1000048338.9208741405
1000141407.8814532195
1000086705.3043245717
1000203604.1466587521
1000359647.0716623426
1000254285.6284746111
1001645751.8154857333
1000141433.8817502798
1000342363.7958627117
1000222739.4700012406
1000038767.5835267215
1000263227.6511913334
1000445022.5312680042
1000061113.048...

result:

ok 50 numbers