| Task: | Wario Kart I |
| Sender: | erimey |
| Submission time: | 2025-09-15 17:37:45 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
| #2 | WRONG ANSWER | 0.04 s | details |
| #3 | WRONG ANSWER | 0.04 s | details |
| #4 | ACCEPTED | 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 | ACCEPTED | 0.04 s | details |
| #18 | WRONG ANSWER | 0.04 s | details |
| #19 | ACCEPTED | 0.04 s | details |
| #20 | WRONG ANSWER | 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 | ACCEPTED | 0.04 s | details |
| #28 | WRONG ANSWER | 0.04 s | details |
| #29 | ACCEPTED | 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.04 s | details |
| #52 | WRONG ANSWER | 0.04 s | details |
| #53 | WRONG ANSWER | 0.04 s | details |
| #54 | WRONG ANSWER | 0.05 s | details |
| #55 | WRONG ANSWER | 0.04 s | details |
| #56 | WRONG ANSWER | 0.05 s | details |
| #57 | WRONG ANSWER | 0.04 s | details |
| #58 | WRONG ANSWER | 0.04 s | details |
| #59 | WRONG ANSWER | 0.04 s | details |
| #60 | TIME LIMIT EXCEEDED | -- | details |
| #61 | TIME LIMIT EXCEEDED | -- | details |
| #62 | TIME LIMIT EXCEEDED | -- | details |
| #63 | WRONG ANSWER | 0.83 s | details |
| #64 | TIME LIMIT EXCEEDED | -- | details |
| #65 | WRONG ANSWER | 0.37 s | details |
| #66 | TIME LIMIT EXCEEDED | -- | details |
| #67 | WRONG ANSWER | 0.57 s | details |
| #68 | WRONG ANSWER | 0.13 s | details |
| #69 | WRONG ANSWER | 0.17 s | details |
Code
def race(n,m,k, line2=None):
track_length = n
boosters = m
time = k
position = 0
if line2 == None:
return (time % track_length) * 100
for i in range(time):
position = position % track_length
if position in line2:
position += 2
else:
position += 1
return position*100
if __name__ == "__main__":
n,m,k = map(int, input().split())
inp = input()
if inp != '':
line2 = list(map(int, inp.split()))
print(line2)
res = race(n,m,k,line2)
else:
res = race(n,m,k)
print(res)
# Example 1
# Input:
# 10 2 2
# 1 2
# Output: 300
# Example 2
# Input:
# 5 3 15
# 2 3 4
# Output: 400
# Example 3
# Input:
# 1 0 1
# Output: 0Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 0 1 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 1 4 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| [0] 200 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 2 1 9 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| [0] 200 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 3 0 7 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 3 2 14 0 2 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [0, 2] 400 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 3 2 9 1 2 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [1, 2] 100 |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 4 4 19 0 1 2 3 |
| correct output |
|---|
| 200 |
| user output |
|---|
| [0, 1, 2, 3] 200 |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 4 1 18 0 |
| correct output |
|---|
| 0 |
| user output |
|---|
| [0] 400 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 4 4 9 0 1 2 3 |
| correct output |
|---|
| 200 |
| user output |
|---|
| [0, 1, 2, 3] 200 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 5 3 15 2 3 4 |
| correct output |
|---|
| 400 |
| user output |
|---|
| [2, 3, 4] 400 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 25 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [3, 4] 100 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 4 0 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [0, 4] 600 |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 5 3 1 1 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [1, 3, 4] 100 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 23 0 1 2 3 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [0, 1, 2, 3, 4] 600 |
Test 15
Verdict: WRONG ANSWER
| input |
|---|
| 5 1 1 4 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [4] 100 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 24 0 1 2 3 4 |
| correct output |
|---|
| 300 |
| user output |
|---|
| [0, 1, 2, 3, 4] 300 |
Test 17
Verdict: ACCEPTED
| input |
|---|
| 5 0 5 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 18
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 0 0 1 2 3 4 |
| correct output |
|---|
| 0 |
| user output |
|---|
| [0, 1, 2, 3, 4] 0 |
Test 19
Verdict: ACCEPTED
| input |
|---|
| 5 0 9 |
| correct output |
|---|
| 400 |
| user output |
|---|
| 400 |
Test 20
Verdict: WRONG ANSWER
| input |
|---|
| 10 6 30 3 4 5 6 7 8 |
| correct output |
|---|
| 200 |
| user output |
|---|
| [3, 4, 5, 6, 7, 8] 200 |
Test 21
Verdict: WRONG ANSWER
| input |
|---|
| 10 4 50 0 1 7 9 |
| correct output |
|---|
| 100 |
| user output |
|---|
| [0, 1, 7, 9] 1100 |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 10 4 9 0 4 5 9 |
| correct output |
|---|
| 200 |
| user output |
|---|
| [0, 4, 5, 9] 200 |
Test 23
Verdict: WRONG ANSWER
| input |
|---|
| 10 6 3 1 2 4 5 7 8 |
| correct output |
|---|
| 400 |
| user output |
|---|
| [1, 2, 4, 5, 7, 8] 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 |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 1000 |
Test 25
Verdict: WRONG ANSWER
| input |
|---|
| 10 2 2 2 8 |
| correct output |
|---|
| 200 |
| user output |
|---|
| [2, 8] 200 |
Test 26
Verdict: WRONG ANSWER
| input |
|---|
| 10 9 48 0 1 2 3 4 5 6 8 9 |
| correct output |
|---|
| 600 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 6, 8, 9] 600 |
Test 27
Verdict: ACCEPTED
| input |
|---|
| 10 0 11 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 28
Verdict: WRONG ANSWER
| input |
|---|
| 10 9 0 0 2 3 4 5 6 7 8 9 |
| correct output |
|---|
| 0 |
| user output |
|---|
| [0, 2, 3, 4, 5, 6, 7, 8, 9] 0 |
Test 29
Verdict: ACCEPTED
| input |
|---|
| 10 0 18 |
| correct output |
|---|
| 800 |
| user output |
|---|
| 800 |
Test 30
Verdict: WRONG ANSWER
| input |
|---|
| 100 55 297 1 2 5 7 8 10 11 13 14 18 21 26... |
| correct output |
|---|
| 6900 |
| user output |
|---|
| [1, 2, 5, 7, 8, 10, 11, 13, 14... Truncated |
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 |
|---|
| [0, 2, 3, 8, 9, 12, 14, 18, 19... Truncated |
Test 32
Verdict: WRONG ANSWER
| input |
|---|
| 100 44 92 2 6 7 9 10 11 12 13 15 17 18 2... |
| correct output |
|---|
| 3200 |
| user output |
|---|
| [2, 6, 7, 9, 10, 11, 12, 13, 1... Truncated |
Test 33
Verdict: WRONG ANSWER
| input |
|---|
| 100 55 35 1 2 4 5 9 12 14 15 20 21 22 24... |
| correct output |
|---|
| 5400 |
| user output |
|---|
| [1, 2, 4, 5, 9, 12, 14, 15, 20... Truncated |
Test 34
Verdict: WRONG ANSWER
| input |
|---|
| 100 97 451 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 8300 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,... Truncated |
Test 35
Verdict: WRONG ANSWER
| input |
|---|
| 100 22 27 8 18 20 24 29 35 36 39 44 48 5... |
| correct output |
|---|
| 3200 |
| user output |
|---|
| [8, 18, 20, 24, 29, 35, 36, 39... Truncated |
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 |
|---|
| [0, 2, 3, 4, 5, 6, 8, 9, 10, 1... Truncated |
Test 37
Verdict: WRONG ANSWER
| input |
|---|
| 100 7 113 30 31 43 45 72 77 97 |
| correct output |
|---|
| 1900 |
| user output |
|---|
| [30, 31, 43, 45, 72, 77, 97] 1900 |
Test 38
Verdict: WRONG ANSWER
| input |
|---|
| 100 88 5 0 1 2 3 5 6 7 9 10 11 12 13 14... |
| correct output |
|---|
| 900 |
| user output |
|---|
| [0, 1, 2, 3, 5, 6, 7, 9, 10, 1... Truncated |
Test 39
Verdict: WRONG ANSWER
| input |
|---|
| 100 1 182 50 |
| correct output |
|---|
| 8400 |
| user output |
|---|
| [50] 8400 |
Test 40
Verdict: WRONG ANSWER
| input |
|---|
| 200 110 593 2 3 4 7 11 12 14 17 19 20 21 2... |
| correct output |
|---|
| 14100 |
| user output |
|---|
| [2, 3, 4, 7, 11, 12, 14, 17, 1... Truncated |
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 |
|---|
| [0, 3, 5, 6, 7, 11, 14, 16, 17... Truncated |
Test 42
Verdict: WRONG ANSWER
| input |
|---|
| 200 87 185 5 13 15 16 19 21 23 25 26 29 3... |
| correct output |
|---|
| 6600 |
| user output |
|---|
| [5, 13, 15, 16, 19, 21, 23, 25... Truncated |
Test 43
Verdict: WRONG ANSWER
| input |
|---|
| 200 110 70 3 4 5 8 10 12 13 14 15 17 18 2... |
| correct output |
|---|
| 11000 |
| user output |
|---|
| [3, 4, 5, 8, 10, 12, 13, 14, 1... Truncated |
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 |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,... Truncated |
Test 45
Verdict: WRONG ANSWER
| input |
|---|
| 200 44 55 2 16 17 18 22 23 31 37 40 41 4... |
| correct output |
|---|
| 6800 |
| user output |
|---|
| [2, 16, 17, 18, 22, 23, 31, 37... Truncated |
Test 46
Verdict: WRONG ANSWER
| input |
|---|
| 200 179 948 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 17200 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,... Truncated |
Test 47
Verdict: WRONG ANSWER
| input |
|---|
| 200 15 227 3 14 17 52 53 61 63 83 87 91 1... |
| correct output |
|---|
| 4400 |
| user output |
|---|
| [3, 14, 17, 52, 53, 61, 63, 83... |
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 |
|---|
| [0, 1, 2, 4, 5, 6, 7, 8, 9, 10... Truncated |
Test 49
Verdict: WRONG ANSWER
| input |
|---|
| 200 2 364 99 100 |
| correct output |
|---|
| 16600 |
| user output |
|---|
| [99, 100] 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 |
|---|
| [0, 4, 9, 11, 12, 13, 15, 16, ... Truncated |
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 |
|---|
| [0, 2, 4, 8, 9, 11, 12, 13, 15... Truncated |
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 |
|---|
| [0, 1, 2, 4, 5, 8, 9, 10, 13, ... Truncated |
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 |
|---|
| [0, 2, 4, 6, 9, 12, 13, 18, 20... Truncated |
Test 54
Verdict: WRONG ANSWER
| input |
|---|
| 1000 967 4504 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
| correct output |
|---|
| 83100 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,... Truncated |
Test 55
Verdict: WRONG ANSWER
| input |
|---|
| 1000 222 275 1 2 5 12 14 20 22 24 29 35 51 ... |
| correct output |
|---|
| 33200 |
| user output |
|---|
| [1, 2, 5, 12, 14, 20, 22, 24, ... Truncated |
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 |
|---|
| [0, 2, 3, 4, 5, 7, 8, 10, 11, ... Truncated |
Test 57
Verdict: WRONG ANSWER
| input |
|---|
| 1000 76 1136 15 24 65 72 83 86 100 133 142 ... |
| correct output |
|---|
| 22200 |
| user output |
|---|
| [15, 24, 65, 72, 83, 86, 100, ... Truncated |
Test 58
Verdict: WRONG ANSWER
| input |
|---|
| 1000 874 55 0 1 2 3 4 5 6 7 8 9 10 11 13 1... |
| correct output |
|---|
| 10200 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,... Truncated |
Test 59
Verdict: WRONG ANSWER
| input |
|---|
| 1000 10 1822 7 13 133 142 218 316 495 499 5... |
| correct output |
|---|
| 84100 |
| user output |
|---|
| [7, 13, 133, 142, 218, 316, 49... |
Test 60
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 54882 296454 0 2 3 4 5 6 7 9 15 16 18 20 21... |
| correct output |
|---|
| 5941200 |
| user output |
|---|
| (empty) |
Test 61
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 41702 498646 4 5 6 7 9 11 14 17 18 23 24 29... |
| correct output |
|---|
| 755600 |
| user output |
|---|
| (empty) |
Test 62
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 43600 92551 2 4 7 10 12 17 18 30 34 35 36 ... |
| correct output |
|---|
| 3319100 |
| user output |
|---|
| (empty) |
Test 63
Verdict: WRONG ANSWER
| input |
|---|
| 100000 55080 35366 1 2 3 4 6 7 8 12 13 14 15 17 2... |
| correct output |
|---|
| 5465700 |
| user output |
|---|
| [1, 2, 3, 4, 6, 7, 8, 12, 13, ... Truncated |
Test 64
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 96704 450359 0 1 2 3 4 5 6 8 9 10 11 12 13 ... |
| correct output |
|---|
| 8642700 |
| user output |
|---|
| (empty) |
Test 65
Verdict: WRONG ANSWER
| input |
|---|
| 100000 22199 27593 6 14 28 38 39 45 46 48 49 50 5... |
| correct output |
|---|
| 3364900 |
| user output |
|---|
| [6, 14, 28, 38, 39, 45, 46, 48... Truncated |
Test 66
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 89287 473789 0 1 2 3 4 5 6 7 8 9 10 12 13 1... |
| correct output |
|---|
| 9652600 |
| user output |
|---|
| (empty) |
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 |
|---|
| [0, 8, 18, 24, 27, 64, 69, 85,... Truncated |
Test 68
Verdict: WRONG ANSWER
| input |
|---|
| 100000 87344 5557 0 1 2 3 4 5 7 8 9 10 11 13 14 ... |
| correct output |
|---|
| 1043700 |
| user output |
|---|
| [0, 1, 2, 3, 4, 5, 7, 8, 9, 10... Truncated |
Test 69
Verdict: WRONG ANSWER
| input |
|---|
| 100000 1037 182250 34 264 299 412 456 495 653 655... |
| correct output |
|---|
| 8414700 |
| user output |
|---|
| [34, 264, 299, 412, 456, 495, ... Truncated |
