| Task: | Wario Kart I |
| Sender: | Ranjana |
| Submission time: | 2025-09-15 17:07:06 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.08 s | details |
| #2 | ACCEPTED | 0.04 s | details |
| #3 | ACCEPTED | 0.04 s | details |
| #4 | RUNTIME ERROR | 0.08 s | details |
| #5 | WRONG ANSWER | 0.04 s | details |
| #6 | ACCEPTED | 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 | ACCEPTED | 0.04 s | details |
| #11 | ACCEPTED | 0.04 s | details |
| #12 | WRONG ANSWER | 0.04 s | details |
| #13 | ACCEPTED | 0.04 s | details |
| #14 | WRONG ANSWER | 0.04 s | details |
| #15 | ACCEPTED | 0.04 s | details |
| #16 | WRONG ANSWER | 0.04 s | details |
| #17 | RUNTIME ERROR | 0.08 s | details |
| #18 | ACCEPTED | 0.04 s | details |
| #19 | RUNTIME ERROR | 0.08 s | details |
| #20 | ACCEPTED | 0.04 s | details |
| #21 | ACCEPTED | 0.04 s | details |
| #22 | WRONG ANSWER | 0.04 s | details |
| #23 | ACCEPTED | 0.04 s | details |
| #24 | WRONG ANSWER | 0.04 s | details |
| #25 | ACCEPTED | 0.04 s | details |
| #26 | WRONG ANSWER | 0.04 s | details |
| #27 | RUNTIME ERROR | 0.08 s | details |
| #28 | ACCEPTED | 0.04 s | details |
| #29 | RUNTIME ERROR | 0.08 s | details |
| #30 | ACCEPTED | 0.04 s | details |
| #31 | WRONG ANSWER | 0.04 s | details |
| #32 | ACCEPTED | 0.04 s | details |
| #33 | ACCEPTED | 0.04 s | details |
| #34 | ACCEPTED | 0.04 s | details |
| #35 | ACCEPTED | 0.04 s | details |
| #36 | WRONG ANSWER | 0.04 s | details |
| #37 | ACCEPTED | 0.04 s | details |
| #38 | ACCEPTED | 0.04 s | details |
| #39 | ACCEPTED | 0.04 s | details |
| #40 | ACCEPTED | 0.04 s | details |
| #41 | WRONG ANSWER | 0.04 s | details |
| #42 | ACCEPTED | 0.04 s | details |
| #43 | ACCEPTED | 0.04 s | details |
| #44 | WRONG ANSWER | 0.04 s | details |
| #45 | ACCEPTED | 0.04 s | details |
| #46 | ACCEPTED | 0.04 s | details |
| #47 | ACCEPTED | 0.04 s | details |
| #48 | WRONG ANSWER | 0.04 s | details |
| #49 | ACCEPTED | 0.04 s | details |
| #50 | WRONG ANSWER | 0.04 s | details |
| #51 | WRONG ANSWER | 0.04 s | details |
| #52 | WRONG ANSWER | 0.04 s | details |
| #53 | WRONG ANSWER | 0.04 s | details |
| #54 | ACCEPTED | 0.04 s | details |
| #55 | ACCEPTED | 0.04 s | details |
| #56 | WRONG ANSWER | 0.04 s | details |
| #57 | ACCEPTED | 0.04 s | details |
| #58 | ACCEPTED | 0.04 s | details |
| #59 | ACCEPTED | 0.04 s | details |
| #60 | WRONG ANSWER | 0.11 s | details |
| #61 | ACCEPTED | 0.11 s | details |
| #62 | ACCEPTED | 0.11 s | details |
| #63 | ACCEPTED | 0.09 s | details |
| #64 | WRONG ANSWER | 0.11 s | details |
| #65 | ACCEPTED | 0.07 s | details |
| #66 | WRONG ANSWER | 0.11 s | details |
| #67 | WRONG ANSWER | 0.11 s | details |
| #68 | ACCEPTED | 0.09 s | details |
| #69 | ACCEPTED | 0.10 s | details |
Code
n, m, k = map(int, input().split())
boost_boost_rem = set()
if m > 0:
boost = list(map(int, input().split()))
boost_pos = set(a * 100 for a in boost)
tr_len = n * 100
pos = 0
boost_rem = 0
seen = {}
max_c_check = min(k, 2 * tr_len)
for t in range(max_c_check):
state = (pos, boost_rem)
if state in seen:
c_start = seen[state]
c_len = t - c_start
if c_len > 0:
rem_time = k - t
full_cs = rem_time // c_len
rem_steps = rem_time % c_len
for _ in range(rem_steps):
if boost_rem > 0:
speed = 200
boost_rem -= 1
else:
speed = 100
pos += speed
pos %= tr_len
if pos in boost_pos and boost_rem == 0:
boost_rem = 1
print(pos)
exit()
seen[state] = t
if boost_rem > 0:
speed = 200
boost_rem -= 1
else:
speed = 100
pos += speed
pos %= tr_len
if pos in boost_pos and boost_rem == 0:
boost_rem = 1
print(pos)
#The cars normally move at a speed of 100 m/s, but there are also m boost pads numbered 1,\,2,\,\dots,\,m; the i-th is located a_i \times 100 meters from the starting line. A boost pad doubles a car's speed for one second. While one boost is active, another cannot be picked up. The racing tr is circular and has a len of n \times 100 meters. Calculate Maija's pos from the starting line k seconds after the race started.
#Input
#The first line contains three integers: n,\,m,\,k.
#The second line contains m distinct integers: a_1,\,a_2,\,\dots,\,a_m.
# modify the logic to have specific integers
Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 0 1 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 2
Verdict: ACCEPTED
| input |
|---|
| 1 1 4 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 1 9 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 3 0 7 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 3 2 14 0 2 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 200 |
Test 6
Verdict: ACCEPTED
| input |
|---|
| 3 2 9 1 2 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 4 4 19 0 1 2 3 |
| correct output |
|---|
| 200 |
| user output |
|---|
| 100 |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 4 1 18 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 300 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 4 4 9 0 1 2 3 |
| correct output |
|---|
| 200 |
| user output |
|---|
| 100 |
Test 10
Verdict: ACCEPTED
| input |
|---|
| 5 3 15 2 3 4 |
| correct output |
|---|
| 400 |
| user output |
|---|
| 400 |
Test 11
Verdict: ACCEPTED
| input |
|---|
| 5 2 25 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 4 0 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 400 |
Test 13
Verdict: ACCEPTED
| input |
|---|
| 5 3 1 1 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 23 0 1 2 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 0 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 5 1 1 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 24 0 1 2 3 4 |
| correct output |
|---|
| 300 |
| user output |
|---|
| 200 |
Test 17
Verdict: RUNTIME ERROR
| input |
|---|
| 5 0 5 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 18
Verdict: ACCEPTED
| input |
|---|
| 5 5 0 0 1 2 3 4 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 19
Verdict: RUNTIME ERROR
| input |
|---|
| 5 0 9 |
| correct output |
|---|
| 400 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 20
Verdict: ACCEPTED
| input |
|---|
| 10 6 30 3 4 5 6 7 8 |
| correct output |
|---|
| 200 |
| user output |
|---|
| 200 |
Test 21
Verdict: ACCEPTED
| input |
|---|
| 10 4 50 0 1 7 9 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 10 4 9 0 4 5 9 |
| correct output |
|---|
| 200 |
| user output |
|---|
| 100 |
Test 23
Verdict: ACCEPTED
| input |
|---|
| 10 6 3 1 2 4 5 7 8 |
| correct output |
|---|
| 400 |
| user output |
|---|
| 400 |
Test 24
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 45 0 1 2 3 4 5 6 7 8 9 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 900 |
Test 25
Verdict: ACCEPTED
| input |
|---|
| 10 2 2 2 8 |
| correct output |
|---|
| 200 |
| user output |
|---|
| 200 |
Test 26
Verdict: WRONG ANSWER
| input |
|---|
| 10 9 48 0 1 2 3 4 5 6 8 9 |
| correct output |
|---|
| 600 |
| user output |
|---|
| 400 |
Test 27
Verdict: RUNTIME ERROR
| input |
|---|
| 10 0 11 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 28
Verdict: ACCEPTED
| input |
|---|
| 10 9 0 0 2 3 4 5 6 7 8 9 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 29
Verdict: RUNTIME ERROR
| input |
|---|
| 10 0 18 |
| correct output |
|---|
| 800 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 61, in <module>
if pos...Test 30
Verdict: ACCEPTED
| input |
|---|
| 100 55 297 1 2 5 7 8 10 11 13 14 18 21 26... |
| correct output |
|---|
| 6900 |
| user output |
|---|
| 6900 |
Test 31
Verdict: WRONG ANSWER
| input |
|---|
| 100 42 499 0 2 3 8 9 12 14 18 19 20 22 23... |
| correct output |
|---|
| 400 |
| user output |
|---|
| 200 |
Test 32
Verdict: ACCEPTED
| input |
|---|
| 100 44 92 2 6 7 9 10 11 12 13 15 17 18 2... |
| correct output |
|---|
| 3200 |
| user output |
|---|
| 3200 |
Test 33
Verdict: ACCEPTED
| input |
|---|
| 100 55 35 1 2 4 5 9 12 14 15 20 21 22 24... |
| correct output |
|---|
| 5400 |
| user output |
|---|
| 5400 |
Test 34
Verdict: ACCEPTED
| input |
|---|
| 100 97 451 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 8300 |
| user output |
|---|
| 8300 |
Test 35
Verdict: ACCEPTED
| input |
|---|
| 100 22 27 8 18 20 24 29 35 36 39 44 48 5... |
| correct output |
|---|
| 3200 |
| user output |
|---|
| 3200 |
Test 36
Verdict: WRONG ANSWER
| input |
|---|
| 100 90 474 0 2 3 4 5 6 8 9 10 11 12 13 14... |
| correct output |
|---|
| 1200 |
| user output |
|---|
| 1000 |
Test 37
Verdict: ACCEPTED
| input |
|---|
| 100 7 113 30 31 43 45 72 77 97 |
| correct output |
|---|
| 1900 |
| user output |
|---|
| 1900 |
Test 38
Verdict: ACCEPTED
| input |
|---|
| 100 88 5 0 1 2 3 5 6 7 9 10 11 12 13 14... |
| correct output |
|---|
| 900 |
| user output |
|---|
| 900 |
Test 39
Verdict: ACCEPTED
| input |
|---|
| 100 1 182 50 |
| correct output |
|---|
| 8400 |
| user output |
|---|
| 8400 |
Test 40
Verdict: ACCEPTED
| input |
|---|
| 200 110 593 2 3 4 7 11 12 14 17 19 20 21 2... |
| correct output |
|---|
| 14100 |
| user output |
|---|
| 14100 |
Test 41
Verdict: WRONG ANSWER
| input |
|---|
| 200 83 998 0 3 5 6 7 11 14 16 17 18 19 20... |
| correct output |
|---|
| 19600 |
| user output |
|---|
| 19500 |
Test 42
Verdict: ACCEPTED
| input |
|---|
| 200 87 185 5 13 15 16 19 21 23 25 26 29 3... |
| correct output |
|---|
| 6600 |
| user output |
|---|
| 6600 |
Test 43
Verdict: ACCEPTED
| input |
|---|
| 200 110 70 3 4 5 8 10 12 13 14 15 17 18 2... |
| correct output |
|---|
| 11000 |
| user output |
|---|
| 11000 |
Test 44
Verdict: WRONG ANSWER
| input |
|---|
| 200 194 901 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 16700 |
| user output |
|---|
| 16500 |
Test 45
Verdict: ACCEPTED
| input |
|---|
| 200 44 55 2 16 17 18 22 23 31 37 40 41 4... |
| correct output |
|---|
| 6800 |
| user output |
|---|
| 6800 |
Test 46
Verdict: ACCEPTED
| input |
|---|
| 200 179 948 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 17200 |
| user output |
|---|
| 17200 |
Test 47
Verdict: ACCEPTED
| input |
|---|
| 200 15 227 3 14 17 52 53 61 63 83 87 91 1... |
| correct output |
|---|
| 4400 |
| user output |
|---|
| 4400 |
Test 48
Verdict: WRONG ANSWER
| input |
|---|
| 200 175 11 0 1 2 4 5 6 7 8 9 10 11 12 13 ... |
| correct output |
|---|
| 2100 |
| user output |
|---|
| 1900 |
Test 49
Verdict: ACCEPTED
| input |
|---|
| 200 2 364 99 100 |
| correct output |
|---|
| 16600 |
| user output |
|---|
| 16600 |
Test 50
Verdict: WRONG ANSWER
| input |
|---|
| 1000 549 2964 0 4 9 11 12 13 15 16 18 19 20 ... |
| correct output |
|---|
| 60800 |
| user output |
|---|
| 60600 |
Test 51
Verdict: WRONG ANSWER
| input |
|---|
| 1000 417 4986 0 2 4 8 9 11 12 13 15 18 19 21... |
| correct output |
|---|
| 6600 |
| user output |
|---|
| 6400 |
Test 52
Verdict: WRONG ANSWER
| input |
|---|
| 1000 436 925 0 1 2 4 5 8 9 10 13 16 18 25 2... |
| correct output |
|---|
| 31700 |
| user output |
|---|
| 31500 |
Test 53
Verdict: WRONG ANSWER
| input |
|---|
| 1000 551 353 0 2 4 6 9 12 13 18 20 21 22 23... |
| correct output |
|---|
| 54500 |
| user output |
|---|
| 54300 |
Test 54
Verdict: ACCEPTED
| input |
|---|
| 1000 967 4504 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 83100 |
| user output |
|---|
| 83100 |
Test 55
Verdict: ACCEPTED
| input |
|---|
| 1000 222 275 1 2 5 12 14 20 22 24 29 35 51 ... |
| correct output |
|---|
| 33200 |
| user output |
|---|
| 33200 |
Test 56
Verdict: WRONG ANSWER
| input |
|---|
| 1000 893 4738 0 2 3 4 5 7 8 10 11 12 13 14 1... |
| correct output |
|---|
| 90500 |
| user output |
|---|
| 90400 |
Test 57
Verdict: ACCEPTED
| input |
|---|
| 1000 76 1136 15 24 65 72 83 86 100 133 142 ... |
| correct output |
|---|
| 22200 |
| user output |
|---|
| 22200 |
Test 58
Verdict: ACCEPTED
| input |
|---|
| 1000 874 55 0 1 2 3 4 5 6 7 8 9 10 11 13 1... |
| correct output |
|---|
| 10200 |
| user output |
|---|
| 10200 |
Test 59
Verdict: ACCEPTED
| input |
|---|
| 1000 10 1822 7 13 133 142 218 316 495 499 5... |
| correct output |
|---|
| 84100 |
| user output |
|---|
| 84100 |
Test 60
Verdict: WRONG ANSWER
| input |
|---|
| 100000 54882 296454 0 2 3 4 5 6 7 9 15 16 18 20 21... |
| correct output |
|---|
| 5941200 |
| user output |
|---|
| 5941000 |
Test 61
Verdict: ACCEPTED
| input |
|---|
| 100000 41702 498646 4 5 6 7 9 11 14 17 18 23 24 29... |
| correct output |
|---|
| 755600 |
| user output |
|---|
| 755600 |
Test 62
Verdict: ACCEPTED
| input |
|---|
| 100000 43600 92551 2 4 7 10 12 17 18 30 34 35 36 ... |
| correct output |
|---|
| 3319100 |
| user output |
|---|
| 3319100 |
Test 63
Verdict: ACCEPTED
| input |
|---|
| 100000 55080 35366 1 2 3 4 6 7 8 12 13 14 15 17 2... |
| correct output |
|---|
| 5465700 |
| user output |
|---|
| 5465700 |
Test 64
Verdict: WRONG ANSWER
| input |
|---|
| 100000 96704 450359 0 1 2 3 4 5 6 8 9 10 11 12 13 ... |
| correct output |
|---|
| 8642700 |
| user output |
|---|
| 8642500 |
Test 65
Verdict: ACCEPTED
| input |
|---|
| 100000 22199 27593 6 14 28 38 39 45 46 48 49 50 5... |
| correct output |
|---|
| 3364900 |
| user output |
|---|
| 3364900 |
Test 66
Verdict: WRONG ANSWER
| input |
|---|
| 100000 89287 473789 0 1 2 3 4 5 6 7 8 9 10 12 13 1... |
| correct output |
|---|
| 9652600 |
| user output |
|---|
| 9652400 |
Test 67
Verdict: WRONG ANSWER
| input |
|---|
| 100000 7630 113681 0 8 18 24 27 64 69 85 92 102 1... |
| correct output |
|---|
| 2231400 |
| user output |
|---|
| 2231300 |
Test 68
Verdict: ACCEPTED
| input |
|---|
| 100000 87344 5557 0 1 2 3 4 5 7 8 9 10 11 13 14 ... |
| correct output |
|---|
| 1043700 |
| user output |
|---|
| 1043700 |
Test 69
Verdict: ACCEPTED
| input |
|---|
| 100000 1037 182250 34 264 299 412 456 495 653 655... |
| correct output |
|---|
| 8414700 |
| user output |
|---|
| 8414700 |
