Task: | Gas tank |
Sender: | aalto2024k_002 |
Submission time: | 2024-11-13 17:21:32 +0200 |
Language: | Python3 (PyPy3) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.04 s | details |
#2 | ACCEPTED | 0.04 s | details |
#3 | WRONG ANSWER | 0.04 s | details |
#4 | WRONG ANSWER | 0.04 s | details |
#5 | WRONG ANSWER | 0.04 s | details |
#6 | WRONG ANSWER | 0.04 s | details |
#7 | WRONG ANSWER | 0.04 s | details |
#8 | WRONG ANSWER | 0.04 s | details |
#9 | WRONG ANSWER | 0.04 s | details |
#10 | WRONG ANSWER | 0.04 s | details |
#11 | WRONG ANSWER | 0.04 s | details |
#12 | WRONG ANSWER | 0.04 s | details |
#13 | WRONG ANSWER | 0.04 s | details |
#14 | WRONG ANSWER | 0.04 s | details |
#15 | WRONG ANSWER | 0.04 s | details |
#16 | WRONG ANSWER | 0.04 s | details |
#17 | WRONG ANSWER | 0.04 s | details |
#18 | WRONG ANSWER | 0.04 s | details |
#19 | WRONG ANSWER | 0.04 s | details |
#20 | ACCEPTED | 0.04 s | details |
#21 | WRONG ANSWER | 0.04 s | details |
#22 | WRONG ANSWER | 0.04 s | details |
#23 | WRONG ANSWER | 0.04 s | details |
#24 | WRONG ANSWER | 0.04 s | details |
#25 | WRONG ANSWER | 0.04 s | details |
#26 | WRONG ANSWER | 0.04 s | details |
#27 | WRONG ANSWER | 0.04 s | details |
#28 | WRONG ANSWER | 0.04 s | details |
#29 | WRONG ANSWER | 0.04 s | details |
#30 | WRONG ANSWER | 0.04 s | details |
#31 | WRONG ANSWER | 0.04 s | details |
#32 | WRONG ANSWER | 0.04 s | details |
#33 | WRONG ANSWER | 0.04 s | details |
#34 | WRONG ANSWER | 0.04 s | details |
#35 | WRONG ANSWER | 0.04 s | details |
#36 | WRONG ANSWER | 0.04 s | details |
#37 | WRONG ANSWER | 0.04 s | details |
#38 | WRONG ANSWER | 0.04 s | details |
#39 | WRONG ANSWER | 0.04 s | details |
#40 | WRONG ANSWER | 0.04 s | details |
#41 | WRONG ANSWER | 0.04 s | details |
#42 | WRONG ANSWER | 0.04 s | details |
#43 | WRONG ANSWER | 0.04 s | details |
#44 | WRONG ANSWER | 0.04 s | details |
#45 | WRONG ANSWER | 0.04 s | details |
#46 | WRONG ANSWER | 0.04 s | details |
#47 | WRONG ANSWER | 0.04 s | details |
#48 | WRONG ANSWER | 0.04 s | details |
#49 | WRONG ANSWER | 0.04 s | details |
#50 | WRONG ANSWER | 0.04 s | details |
#51 | WRONG ANSWER | 0.05 s | details |
#52 | WRONG ANSWER | 0.05 s | details |
#53 | WRONG ANSWER | 0.05 s | details |
#54 | WRONG ANSWER | 0.05 s | details |
#55 | WRONG ANSWER | 0.05 s | details |
#56 | WRONG ANSWER | 0.05 s | details |
#57 | WRONG ANSWER | 0.05 s | details |
#58 | WRONG ANSWER | 0.05 s | details |
#59 | WRONG ANSWER | 0.05 s | details |
#60 | WRONG ANSWER | 0.05 s | details |
#61 | WRONG ANSWER | 0.13 s | details |
#62 | WRONG ANSWER | 0.16 s | details |
#63 | WRONG ANSWER | 0.09 s | details |
#64 | WRONG ANSWER | 0.08 s | details |
#65 | WRONG ANSWER | 0.09 s | details |
#66 | WRONG ANSWER | 0.14 s | details |
#67 | WRONG ANSWER | 0.08 s | details |
#68 | WRONG ANSWER | 0.13 s | details |
#69 | WRONG ANSWER | 0.07 s | details |
#70 | WRONG ANSWER | 0.16 s | details |
#71 | WRONG ANSWER | 0.13 s | details |
#72 | WRONG ANSWER | 0.12 s | details |
#73 | WRONG ANSWER | 0.15 s | details |
#74 | WRONG ANSWER | 0.10 s | details |
#75 | WRONG ANSWER | 0.07 s | details |
#76 | WRONG ANSWER | 0.12 s | details |
#77 | WRONG ANSWER | 0.15 s | details |
#78 | WRONG ANSWER | 0.07 s | details |
#79 | WRONG ANSWER | 0.11 s | details |
#80 | WRONG ANSWER | 0.14 s | details |
Code
import math i = int(input()) tmp = math.floor(math.sqrt(i) / 2.0) print(tmp) def get_b(a, c): A = a B = a*a C = -c subsum = B*B - (4*A*C) if subsum < 0: return 0, 0 f = -(B - math.sqrt(subsum)) / (2 * A) s = -(B + math.sqrt(subsum)) / (2 * A) if f > s: return math.floor(f), math.ceil(f) return math.floor(s), math.ceil(s) best_a, best_b = 0, 0 best_vol = 0 # for os in range(-1000000, 1000000): for a in range(1, tmp+1): for b in get_b(a, i): vol = a*a*b + a*b*b if vol <= i and vol > best_vol: best_vol = vol best_a = a best_b = b print(int(best_b), int(best_a))
Test details
Test 1
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
2 1 |
user output |
---|
1 2 1 |
Test 2
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
2 1 |
user output |
---|
1 2 1 |
Test 3
Verdict: WRONG ANSWER
input |
---|
46 |
correct output |
---|
6 1 |
user output |
---|
3 6 1 |
Test 4
Verdict: WRONG ANSWER
input |
---|
28 |
correct output |
---|
4 1 |
user output |
---|
2 4 1 |
Test 5
Verdict: WRONG ANSWER
input |
---|
40 |
correct output |
---|
5 1 |
user output |
---|
3 5 1 |
Test 6
Verdict: WRONG ANSWER
input |
---|
34 |
correct output |
---|
5 1 |
user output |
---|
2 5 1 |
Test 7
Verdict: WRONG ANSWER
input |
---|
39 |
correct output |
---|
5 1 |
user output |
---|
3 5 1 |
Test 8
Verdict: WRONG ANSWER
input |
---|
38 |
correct output |
---|
5 1 |
user output |
---|
3 5 1 |
Test 9
Verdict: WRONG ANSWER
input |
---|
25 |
correct output |
---|
4 1 |
user output |
---|
2 4 1 |
Test 10
Verdict: WRONG ANSWER
input |
---|
26 |
correct output |
---|
4 1 |
user output |
---|
2 4 1 |
Test 11
Verdict: WRONG ANSWER
input |
---|
549 |
correct output |
---|
7 6 |
user output |
---|
11 7 6 |
Test 12
Verdict: WRONG ANSWER
input |
---|
418 |
correct output |
---|
13 2 |
user output |
---|
10 13 2 |
Test 13
Verdict: WRONG ANSWER
input |
---|
436 |
correct output |
---|
6 6 |
user output |
---|
10 6 6 |
Test 14
Verdict: WRONG ANSWER
input |
---|
551 |
correct output |
---|
7 6 |
user output |
---|
11 7 6 |
Test 15
Verdict: WRONG ANSWER
input |
---|
968 |
correct output |
---|
21 2 |
user output |
---|
15 21 2 |
Test 16
Verdict: WRONG ANSWER
input |
---|
222 |
correct output |
---|
14 1 |
user output |
---|
7 14 1 |
Test 17
Verdict: WRONG ANSWER
input |
---|
893 |
correct output |
---|
13 4 |
user output |
---|
14 13 4 |
Test 18
Verdict: WRONG ANSWER
input |
---|
77 |
correct output |
---|
8 1 |
user output |
---|
4 8 1 |
Test 19
Verdict: WRONG ANSWER
input |
---|
874 |
correct output |
---|
29 1 |
user output |
---|
14 29 1 |
Test 20
Verdict: ACCEPTED
input |
---|
11 |
correct output |
---|
2 1 |
user output |
---|
1 2 1 |
Test 21
Verdict: WRONG ANSWER
input |
---|
772 |
correct output |
---|
12 4 |
user output |
---|
13 12 4 |
Test 22
Verdict: WRONG ANSWER
input |
---|
181 |
correct output |
---|
5 4 |
user output |
---|
6 5 4 |
Test 23
Verdict: WRONG ANSWER
input |
---|
155 |
correct output |
---|
11 1 |
user output |
---|
6 11 1 |
Test 24
Verdict: WRONG ANSWER
input |
---|
778 |
correct output |
---|
12 4 |
user output |
---|
13 12 4 |
Test 25
Verdict: WRONG ANSWER
input |
---|
514 |
correct output |
---|
15 2 |
user output |
---|
11 15 2 |
Test 26
Verdict: WRONG ANSWER
input |
---|
849 |
correct output |
---|
8 7 |
user output |
---|
14 8 7 |
Test 27
Verdict: WRONG ANSWER
input |
---|
224 |
correct output |
---|
14 1 |
user output |
---|
7 14 1 |
Test 28
Verdict: WRONG ANSWER
input |
---|
295 |
correct output |
---|
11 2 |
user output |
---|
8 11 2 |
Test 29
Verdict: WRONG ANSWER
input |
---|
651 |
correct output |
---|
25 1 |
user output |
---|
12 25 1 |
Test 30
Verdict: WRONG ANSWER
input |
---|
98 |
correct output |
---|
6 2 |
user output |
---|
4 6 2 |
Test 31
Verdict: WRONG ANSWER
input |
---|
588264 |
correct output |
---|
172 18 |
user output |
---|
383 172 18 |
Test 32
Verdict: WRONG ANSWER
input |
---|
48736 |
correct output |
---|
80 7 |
user output |
---|
110 80 7 |
Test 33
Verdict: WRONG ANSWER
input |
---|
208508 |
correct output |
---|
99 18 |
user output |
---|
228 99 18 |
Test 34
Verdict: WRONG ANSWER
input |
---|
517415 |
correct output |
---|
172 16 |
user output |
---|
359 172 16 |
Test 35
Verdict: WRONG ANSWER
input |
---|
960234 |
correct output |
---|
290 11 |
user output |
---|
489 290 11 |
Test 36
Verdict: WRONG ANSWER
input |
---|
870321 |
correct output |
---|
111 49 |
user output |
---|
466 111 49 |
Test 37
Verdict: WRONG ANSWER
input |
---|
308005 |
correct output |
---|
70 40 |
user output |
---|
277 70 40 |
Test 38
Verdict: WRONG ANSWER
input |
---|
425818 |
correct output |
---|
652 1 |
user output |
---|
326 652 1 |
Test 39
Verdict: WRONG ANSWER
input |
---|
729178 |
correct output |
---|
83 61 |
user output |
---|
426 83 61 |
Test 40
Verdict: WRONG ANSWER
input |
---|
863955 |
correct output |
---|
535 3 |
user output |
---|
464 535 3 |
Test 41
Verdict: WRONG ANSWER
input |
---|
116086 |
correct output |
---|
340 1 |
user output |
---|
170 340 1 |
Test 42
Verdict: WRONG ANSWER
input |
---|
612309 |
correct output |
---|
782 1 |
user output |
---|
391 782 1 |
Test 43
Verdict: WRONG ANSWER
input |
---|
375142 |
correct output |
---|
228 7 |
user output |
---|
306 228 7 |
Test 44
Verdict: WRONG ANSWER
input |
---|
852178 |
correct output |
---|
161 28 |
user output |
---|
461 161 28 |
Test 45
Verdict: WRONG ANSWER
input |
---|
151667 |
correct output |
---|
156 6 |
user output |
---|
194 156 6 |
Test 46
Verdict: WRONG ANSWER
input |
---|
196137 |
correct output |
---|
103 16 |
user output |
---|
221 103 16 |
Test 47
Verdict: WRONG ANSWER
input |
---|
375254 |
correct output |
---|
612 1 |
user output |
---|
306 612 1 |
Test 48
Verdict: WRONG ANSWER
input |
---|
451513 |
correct output |
---|
298 5 |
user output |
---|
335 298 5 |
Test 49
Verdict: WRONG ANSWER
input |
---|
942864 |
correct output |
---|
122 46 |
user output |
---|
485 122 46 |
Test 50
Verdict: WRONG ANSWER
input |
---|
848035 |
correct output |
---|
215 17 |
user output |
---|
460 215 17 |
Test 51
Verdict: WRONG ANSWER
input |
---|
727949226 |
correct output |
---|
1876 188 |
user output |
---|
13490 1876 188 |
Test 52
Verdict: WRONG ANSWER
input |
---|
119540561 |
correct output |
---|
395 387 |
user output |
---|
5466 395 387 |
Test 53
Verdict: WRONG ANSWER
input |
---|
168568700 |
correct output |
---|
447 430 |
user output |
---|
6491 447 430 |
Test 54
Verdict: WRONG ANSWER
input |
---|
747828096 |
correct output |
---|
2098 158 |
user output |
---|
13673 2098 158 |
Test 55
Verdict: WRONG ANSWER
input |
---|
113886324 |
correct output |
---|
949 113 |
user output |
---|
5335 949 113 |
Test 56
Verdict: WRONG ANSWER
input |
---|
544092912 |
correct output |
---|
2620 77 |
user output |
---|
11662 2620 77 |
Test 57
Verdict: WRONG ANSWER
input |
---|
112927706 |
correct output |
---|
532 266 |
user output |
---|
5313 532 266 |
Test 58
Verdict: WRONG ANSWER
input |
---|
562461747 |
correct output |
---|
1803 159 |
user output |
---|
11858 1803 159 |
Test 59
Verdict: WRONG ANSWER
input |
---|
930544437 |
correct output |
---|
7390 17 |
user output |
---|
15252 7390 17 |
Test 60
Verdict: WRONG ANSWER
input |
---|
612603672 |
correct output |
---|
1128 364 |
user output |
---|
12375 1128 364 |
Test 61
Verdict: WRONG ANSWER
input |
---|
575864416073 |
correct output |
---|
7427 5843 |
user output |
---|
379428 7427 5843 |
Test 62
Verdict: WRONG ANSWER
input |
---|
942935707814 |
correct output |
---|
63092 236 |
user output |
---|
485524 63092 236 |
Test 63
Verdict: WRONG ANSWER
input |
---|
171264013251 |
correct output |
---|
14433 780 |
user output |
---|
206920 14433 780 |
Test 64
Verdict: WRONG ANSWER
input |
---|
76712165827 |
correct output |
---|
8381 978 |
user output |
---|
138484 8381 978 |
Test 65
Verdict: WRONG ANSWER
input |
---|
161612205399 |
correct output |
---|
7527 2206 |
user output |
---|
201005 7527 2206 |
Test 66
Verdict: WRONG ANSWER
input |
---|
641183113758 |
correct output |
---|
50116 254 |
user output |
---|
400369 50116 254 |
Test 67
Verdict: WRONG ANSWER
input |
---|
87822361843 |
correct output |
---|
24538 145 |
user output |
---|
148174 24538 145 |
Test 68
Verdict: WRONG ANSWER
input |
---|
550401843854 |
correct output |
---|
14093 2372 |
user output |
---|
370945 14093 2372 |
Test 69
Verdict: WRONG ANSWER
input |
---|
56603972680 |
correct output |
---|
10404 499 |
user output |
---|
118957 10404 499 |
Test 70
Verdict: WRONG ANSWER
input |
---|
991404337870 |
correct output |
---|
109250 83 |
user output |
---|
497846 109250 83 |
Test 71
Verdict: WRONG ANSWER
input |
---|
534149659344 |
correct output |
---|
53496 186 |
user output |
---|
365427 53496 186 |
Test 72
Verdict: WRONG ANSWER
input |
---|
336010906011 |
correct output |
---|
183301 10 |
user output |
---|
289832 183301 10 |
Test 73
Verdict: WRONG ANSWER
input |
---|
871714540470 |
correct output |
---|
214186 19 |
user output |
---|
466828 214186 19 |
Test 74
Verdict: WRONG ANSWER
input |
---|
254659717917 |
correct output |
---|
17240 818 |
user output |
---|
252319 17240 818 |
Test 75
Verdict: WRONG ANSWER
input |
---|
40507166127 |
correct output |
---|
3335 2196 |
user output |
---|
100631 3335 2196 |
Test 76
Verdict: WRONG ANSWER
input |
---|
445628406612 |
correct output |
---|
23039 811 |
user output |
---|
333777 23039 811 |
Test 77
Verdict: WRONG ANSWER
input |
---|
822717753419 |
correct output |
---|
39363 524 |
user output |
---|
453518 39363 524 |
Test 78
Verdict: WRONG ANSWER
input |
---|
40410210216 |
correct output |
---|
10096 382 |
user output |
---|
100511 10096 382 |
Test 79
Verdict: WRONG ANSWER
input |
---|
366117794932 |
correct output |
---|
49165 151 |
user output |
---|
302538 49165 151 |
Test 80
Verdict: WRONG ANSWER
input |
---|
657992849714 |
correct output |
---|
11698 3662 |
user output |
---|
405583 11698 3662 |