| Task: | Targeted advertising |
| Sender: | azeaus1 |
| Submission time: | 2025-09-22 17:12:01 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
| #2 | ACCEPTED | 0.04 s | details |
| #3 | ACCEPTED | 0.04 s | details |
| #4 | ACCEPTED | 0.04 s | details |
| #5 | RUNTIME ERROR | 0.06 s | details |
| #6 | ACCEPTED | 0.04 s | details |
| #7 | ACCEPTED | 0.04 s | details |
| #8 | RUNTIME ERROR | 0.07 s | details |
| #9 | ACCEPTED | 0.04 s | details |
| #10 | RUNTIME ERROR | 0.06 s | details |
| #11 | RUNTIME ERROR | 0.06 s | details |
| #12 | ACCEPTED | 0.04 s | details |
| #13 | ACCEPTED | 0.04 s | details |
| #14 | ACCEPTED | 0.04 s | details |
| #15 | ACCEPTED | 0.04 s | details |
| #16 | RUNTIME ERROR | 0.06 s | details |
| #17 | ACCEPTED | 0.04 s | details |
| #18 | ACCEPTED | 0.04 s | details |
| #19 | ACCEPTED | 0.04 s | details |
| #20 | RUNTIME ERROR | 0.06 s | details |
| #21 | RUNTIME ERROR | 0.06 s | details |
| #22 | ACCEPTED | 0.04 s | details |
| #23 | ACCEPTED | 0.04 s | details |
| #24 | RUNTIME ERROR | 0.06 s | details |
| #25 | ACCEPTED | 0.04 s | details |
| #26 | RUNTIME ERROR | 0.06 s | details |
| #27 | ACCEPTED | 0.04 s | details |
| #28 | ACCEPTED | 0.04 s | details |
| #29 | ACCEPTED | 0.04 s | details |
| #30 | RUNTIME ERROR | 0.07 s | details |
| #31 | RUNTIME ERROR | 0.07 s | details |
| #32 | ACCEPTED | 0.05 s | details |
| #33 | ACCEPTED | 0.05 s | details |
| #34 | RUNTIME ERROR | 0.06 s | details |
| #35 | ACCEPTED | 0.05 s | details |
| #36 | RUNTIME ERROR | 0.06 s | details |
| #37 | ACCEPTED | 0.04 s | details |
| #38 | ACCEPTED | 0.06 s | details |
| #39 | ACCEPTED | 0.04 s | details |
| #40 | RUNTIME ERROR | 0.06 s | details |
| #41 | RUNTIME ERROR | 0.06 s | details |
| #42 | ACCEPTED | 0.06 s | details |
| #43 | ACCEPTED | 0.06 s | details |
| #44 | RUNTIME ERROR | 0.06 s | details |
| #45 | ACCEPTED | 0.06 s | details |
| #46 | RUNTIME ERROR | 0.07 s | details |
| #47 | RUNTIME ERROR | 0.07 s | details |
| #48 | ACCEPTED | 0.07 s | details |
| #49 | RUNTIME ERROR | 0.06 s | details |
| #50 | RUNTIME ERROR | 0.07 s | details |
| #51 | RUNTIME ERROR | 0.07 s | details |
| #52 | RUNTIME ERROR | 0.07 s | details |
| #53 | ACCEPTED | 0.14 s | details |
| #54 | RUNTIME ERROR | 0.07 s | details |
| #55 | ACCEPTED | 0.12 s | details |
| #56 | RUNTIME ERROR | 0.07 s | details |
| #57 | RUNTIME ERROR | 0.07 s | details |
| #58 | ACCEPTED | 0.14 s | details |
| #59 | RUNTIME ERROR | 0.07 s | details |
| #60 | RUNTIME ERROR | 0.11 s | details |
| #61 | RUNTIME ERROR | 0.12 s | details |
| #62 | RUNTIME ERROR | 0.10 s | details |
| #63 | ACCEPTED | 0.46 s | details |
| #64 | RUNTIME ERROR | 0.12 s | details |
| #65 | ACCEPTED | 0.47 s | details |
| #66 | RUNTIME ERROR | 0.12 s | details |
| #67 | RUNTIME ERROR | 0.11 s | details |
| #68 | ACCEPTED | 0.46 s | details |
| #69 | RUNTIME ERROR | 0.11 s | details |
| #70 | ACCEPTED | 0.43 s | details |
Code
n, k, q = [int(x) for x in input().split()]
interests = [int(x) for x in input().split()]
idx_interests = [[] for _ in range(k)]
for i, interest in enumerate(interests):
idx_interests[interest-1].append(i)
def binary_search(arr, x):
large = len(arr) -1
small = 0
while (small <= large):
mid = (small + large) // 2
if arr[mid] < x:
small = mid + 1
elif arr[mid] > x:
large = mid - 1
else:
return (mid, mid)
value = arr[mid]
lower = mid if value < x else mid-1
upper = mid if value > x else mid+1
return (lower, upper)
for _ in range(q):
l, r, x = [int(x) for x in input().split()]
right = binary_search(idx_interests[x-1], r-1)[0]
left = binary_search(idx_interests[x-1], l-1)[1]
print(right-left+1)Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 1 1 1 1 1 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 1 1 2 1 1 1 1 1 1 1 |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| 1 1 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 1 2 1 1 2 2 1 1 2 1 |
| correct output |
|---|
| 1 2 |
| user output |
|---|
| 1 2 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 2 2 5 2 1 1 1 2 1 1 2 1 2 2 ... |
| correct output |
|---|
| 1 1 1 1 1 |
| user output |
|---|
| 1 1 1 1 1 |
Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 3 2 4 1 1 1 1 3 1 2 3 2 2 2 2 ... |
| correct output |
|---|
| 3 0 0 0 |
| user output |
|---|
| 3 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 6
Verdict: ACCEPTED
| input |
|---|
| 3 3 8 2 3 1 2 3 2 1 2 2 2 3 1 ... |
| correct output |
|---|
| 0 1 1 1 1 ... |
| user output |
|---|
| 0 1 1 1 1 ... |
Test 7
Verdict: ACCEPTED
| input |
|---|
| 4 2 9 2 2 1 2 2 2 2 2 4 1 2 3 1 ... |
| correct output |
|---|
| 1 1 1 1 2 ... |
| user output |
|---|
| 1 1 1 1 2 ... |
Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 4 3 11 3 3 2 2 3 3 2 2 4 1 3 3 3 ... |
| correct output |
|---|
| 1 0 0 1 1 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 9
Verdict: ACCEPTED
| input |
|---|
| 4 4 8 4 1 4 2 3 4 2 2 2 1 1 4 2 ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 10
Verdict: RUNTIME ERROR
| input |
|---|
| 5 3 11 3 3 2 3 2 3 5 2 2 4 2 2 5 1 ... |
| correct output |
|---|
| 2 1 0 2 1 ... |
| user output |
|---|
| 2 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 5 5 9 4 5 1 1 2 1 5 2 1 2 1 2 2 4 ... |
| correct output |
|---|
| 1 0 0 0 1 ... |
| user output |
|---|
| 1 0 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 12
Verdict: ACCEPTED
| input |
|---|
| 5 1 9 1 1 1 1 1 3 3 1 1 2 1 4 4 1 ... |
| correct output |
|---|
| 1 2 1 2 1 ... |
| user output |
|---|
| 1 2 1 2 1 ... |
Test 13
Verdict: ACCEPTED
| input |
|---|
| 5 1 11 1 1 1 1 1 3 5 1 1 5 1 1 2 1 ... |
| correct output |
|---|
| 3 5 2 1 4 ... |
| user output |
|---|
| 3 5 2 1 4 ... |
Test 14
Verdict: ACCEPTED
| input |
|---|
| 5 5 15 3 1 5 5 4 4 4 3 1 2 5 1 2 4 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 5 1 7 1 1 1 1 1 3 5 1 2 4 1 2 3 1 ... |
| correct output |
|---|
| 3 3 2 4 5 ... |
| user output |
|---|
| 3 3 2 4 5 ... |
Test 16
Verdict: RUNTIME ERROR
| input |
|---|
| 5 5 14 2 2 5 1 1 1 2 5 1 3 3 3 4 3 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 17
Verdict: ACCEPTED
| input |
|---|
| 5 2 5 2 1 1 2 2 3 5 1 2 3 2 1 1 1 ... |
| correct output |
|---|
| 1 0 0 1 1 |
| user output |
|---|
| 1 0 0 1 1 |
Test 18
Verdict: ACCEPTED
| input |
|---|
| 5 1 14 1 1 1 1 1 2 5 1 1 4 1 3 4 1 ... |
| correct output |
|---|
| 4 4 2 3 3 ... |
| user output |
|---|
| 4 4 2 3 3 ... |
Test 19
Verdict: ACCEPTED
| input |
|---|
| 5 2 5 2 1 1 1 1 1 2 1 2 5 1 1 2 1 ... |
| correct output |
|---|
| 1 4 1 1 2 |
| user output |
|---|
| 1 4 1 1 2 |
Test 20
Verdict: RUNTIME ERROR
| input |
|---|
| 10 6 21 5 6 4 6 4 6 3 4 4 3 3 5 6 1 10 2 4 5 5 ... |
| correct output |
|---|
| 1 0 0 1 2 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 21
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 18 8 10 1 2 4 10 2 3 1 4 2 4 4 4 7 10 6 9 5 ... |
| correct output |
|---|
| 0 1 0 0 0 ... |
| user output |
|---|
| 0 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 22
Verdict: ACCEPTED
| input |
|---|
| 10 2 19 1 2 2 2 1 1 1 1 1 1 3 7 2 2 3 1 3 7 2 ... |
| correct output |
|---|
| 2 0 2 0 3 ... |
| user output |
|---|
| 2 0 2 0 3 ... |
Test 23
Verdict: ACCEPTED
| input |
|---|
| 10 1 21 1 1 1 1 1 1 1 1 1 1 1 2 1 1 3 1 5 7 1 ... |
| correct output |
|---|
| 2 3 3 4 5 ... |
| user output |
|---|
| 2 3 3 4 5 ... |
Test 24
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 30 6 2 10 9 8 7 7 6 3 2 3 10 1 3 7 10 5 7 8 ... |
| correct output |
|---|
| 0 1 1 1 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 25
Verdict: ACCEPTED
| input |
|---|
| 10 1 14 1 1 1 1 1 1 1 1 1 1 4 8 1 3 5 1 2 9 1 ... |
| correct output |
|---|
| 5 3 8 2 3 ... |
| user output |
|---|
| 5 3 8 2 3 ... |
Test 26
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 28 4 3 9 1 1 4 2 10 6 1 6 7 5 4 6 5 7 9 5 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 27
Verdict: ACCEPTED
| input |
|---|
| 10 3 11 3 1 2 3 3 2 3 1 2 1 1 6 1 3 5 1 5 6 3 ... |
| correct output |
|---|
| 1 0 1 0 0 ... |
| user output |
|---|
| 1 0 1 0 0 ... |
Test 28
Verdict: ACCEPTED
| input |
|---|
| 10 1 28 1 1 1 1 1 1 1 1 1 1 5 8 1 5 6 1 5 10 1 ... |
| correct output |
|---|
| 4 2 6 5 4 ... |
| user output |
|---|
| 4 2 6 5 4 ... |
Test 29
Verdict: ACCEPTED
| input |
|---|
| 10 4 10 3 2 2 1 1 2 1 1 1 4 2 5 1 1 2 2 4 5 1 ... |
| correct output |
|---|
| 2 1 2 1 2 ... |
| user output |
|---|
| 2 1 2 1 2 ... |
Test 30
Verdict: RUNTIME ERROR
| input |
|---|
| 100 60 210 43 51 37 52 33 51 26 38 39 24 ... |
| correct output |
|---|
| 0 1 0 1 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 31
Verdict: RUNTIME ERROR
| input |
|---|
| 100 100 183 73 94 1 13 31 100 15 24 10 40 ... |
| correct output |
|---|
| 0 1 1 0 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 32
Verdict: ACCEPTED
| input |
|---|
| 100 19 187 1 18 11 19 9 10 8 7 7 3 4 14 1... |
| correct output |
|---|
| 5 0 0 3 4 ... |
| user output |
|---|
| 5 0 0 3 4 ... Truncated |
Test 33
Verdict: ACCEPTED
| input |
|---|
| 100 8 210 6 7 3 1 5 5 8 4 8 1 2 1 2 2 1 ... |
| correct output |
|---|
| 0 9 0 3 4 ... |
| user output |
|---|
| 0 9 0 3 4 ... Truncated |
Test 34
Verdict: RUNTIME ERROR
| input |
|---|
| 100 91 294 50 16 89 78 66 56 64 55 20 13 ... |
| correct output |
|---|
| 1 0 0 0 0 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 35
Verdict: ACCEPTED
| input |
|---|
| 100 6 144 6 5 2 3 6 6 3 1 4 3 5 3 4 3 2 ... |
| correct output |
|---|
| 7 15 10 15 5 ... |
| user output |
|---|
| 7 15 10 15 5 ... Truncated |
Test 36
Verdict: RUNTIME ERROR
| input |
|---|
| 100 95 279 32 20 79 7 4 36 11 94 57 10 51... |
| correct output |
|---|
| 0 2 1 1 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 37
Verdict: ACCEPTED
| input |
|---|
| 100 23 115 18 8 11 23 17 11 23 8 13 7 12 ... |
| correct output |
|---|
| 1 0 0 4 0 ... |
| user output |
|---|
| 1 0 0 4 0 ... Truncated |
Test 38
Verdict: ACCEPTED
| input |
|---|
| 100 2 275 2 1 2 1 2 2 1 1 1 2 1 2 1 1 2 ... |
| correct output |
|---|
| 26 30 13 11 16 ... |
| user output |
|---|
| 26 30 13 11 16 ... Truncated |
Test 39
Verdict: ACCEPTED
| input |
|---|
| 100 37 102 19 19 19 1 5 12 6 1 9 33 16 6 ... |
| correct output |
|---|
| 1 1 3 2 1 ... |
| user output |
|---|
| 1 1 3 2 1 ... Truncated |
Test 40
Verdict: RUNTIME ERROR
| input |
|---|
| 200 119 420 86 101 72 103 65 101 51 75 77 ... |
| correct output |
|---|
| 1 0 0 0 0 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 41
Verdict: RUNTIME ERROR
| input |
|---|
| 200 200 367 145 187 1 26 61 200 30 48 19 8... |
| correct output |
|---|
| 0 0 2 0 0 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 42
Verdict: ACCEPTED
| input |
|---|
| 200 38 374 1 36 21 37 17 19 16 13 13 6 8 ... |
| correct output |
|---|
| 1 1 3 3 0 ... |
| user output |
|---|
| 1 1 3 3 0 ... Truncated |
Test 43
Verdict: ACCEPTED
| input |
|---|
| 200 15 420 11 13 5 2 8 9 14 7 14 1 2 1 4 ... |
| correct output |
|---|
| 6 0 11 2 3 ... |
| user output |
|---|
| 6 0 11 2 3 ... Truncated |
Test 44
Verdict: RUNTIME ERROR
| input |
|---|
| 200 181 587 100 32 177 155 130 111 127 109... |
| correct output |
|---|
| 0 1 2 1 0 ... |
| user output |
|---|
| 0 1 2 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 45
Verdict: ACCEPTED
| input |
|---|
| 200 12 289 11 10 3 5 12 12 6 2 8 5 10 5 7... |
| correct output |
|---|
| 2 13 0 3 6 ... |
| user output |
|---|
| 2 13 0 3 6 ... Truncated |
Test 46
Verdict: RUNTIME ERROR
| input |
|---|
| 200 190 558 64 40 157 13 8 71 21 188 114 1... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 47
Verdict: RUNTIME ERROR
| input |
|---|
| 200 46 230 36 15 21 45 34 21 45 15 25 13 ... |
| correct output |
|---|
| 0 0 0 4 1 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 48
Verdict: ACCEPTED
| input |
|---|
| 200 3 550 3 1 3 2 2 3 1 2 1 2 2 3 2 2 2 ... |
| correct output |
|---|
| 38 59 26 36 10 ... |
| user output |
|---|
| 38 59 26 36 10 ... Truncated |
Test 49
Verdict: RUNTIME ERROR
| input |
|---|
| 200 73 204 37 37 37 1 10 24 11 1 16 65 31... |
| correct output |
|---|
| 2 3 0 4 0 ... |
| user output |
|---|
| 2 3 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 50
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 593 2098 425 501 358 509 324 503 252 37... |
| correct output |
|---|
| 1 0 0 0 4 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 51
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 998 1834 719 931 1 128 302 998 147 236 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 52
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 186 1872 5 174 103 177 81 91 79 60 62 2... |
| correct output |
|---|
| 0 0 1 3 0 ... |
| user output |
|---|
| 0 0 1 3 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 53
Verdict: ACCEPTED
| input |
|---|
| 1000 71 2102 51 60 21 9 37 41 64 32 64 2 9 ... |
| correct output |
|---|
| 1 1 3 15 4 ... |
| user output |
|---|
| 1 1 3 15 4 ... Truncated |
Test 54
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 901 2935 494 156 877 771 645 549 629 53... |
| correct output |
|---|
| 0 0 1 1 0 ... |
| user output |
|---|
| 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 55
Verdict: ACCEPTED
| input |
|---|
| 1000 56 1444 49 47 12 21 52 55 28 6 35 23 4... |
| correct output |
|---|
| 11 11 1 0 2 ... |
| user output |
|---|
| 11 11 1 0 2 ... Truncated |
Test 56
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 948 2786 315 199 779 61 40 351 103 934 ... |
| correct output |
|---|
| 1 0 1 0 0 ... |
| user output |
|---|
| 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 57
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 228 1152 178 73 100 224 165 104 223 71 ... |
| correct output |
|---|
| 1 1 2 3 0 ... |
| user output |
|---|
| 1 1 2 3 0 ... |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 58
Verdict: ACCEPTED
| input |
|---|
| 1000 12 2747 12 3 11 5 7 10 3 6 1 8 6 10 5 ... |
| correct output |
|---|
| 0 25 15 7 47 ... |
| user output |
|---|
| 0 25 15 7 47 ... Truncated |
Test 59
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 365 1020 184 183 181 3 49 116 52 5 80 3... |
| correct output |
|---|
| 1 0 0 1 0 ... |
| user output |
|---|
| 1 0 0 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 60
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 59286 100000 42402 50054 35736 50865 32305 ... |
| correct output |
|---|
| 1 0 3 1 1 ... |
| user output |
|---|
| 1 0 3 1 1 ... |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 61
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 99721 100000 71833 92998 12 12777 30150 996... |
| correct output |
|---|
| 1 0 0 0 0 ... |
| user output |
|---|
| 1 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 62
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 18509 100000 480 17242 10174 17542 8058 897... |
| correct output |
|---|
| 0 2 1 1 1 ... |
| user output |
|---|
| 0 2 1 1 1 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 63
Verdict: ACCEPTED
| input |
|---|
| 100000 7073 100000 5009 5941 2058 859 3614 4027 6... |
| correct output |
|---|
| 6 9 3 2 0 ... |
| user output |
|---|
| 6 9 3 2 0 ... Truncated |
Test 64
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 90064 100000 49287 15554 87606 77063 64381 ... |
| correct output |
|---|
| 1 2 0 0 0 ... |
| user output |
|---|
| 1 2 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 65
Verdict: ACCEPTED
| input |
|---|
| 100000 5519 100000 4806 4589 1141 2008 5070 5406 ... |
| correct output |
|---|
| 10 1 9 14 0 ... |
| user output |
|---|
| 10 1 9 14 0 ... Truncated |
Test 66
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 94750 100000 31456 19842 77813 6089 3951 35... |
| correct output |
|---|
| 0 1 0 1 0 ... |
| user output |
|---|
| 0 1 0 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 67
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 22735 100000 17732 7252 9968 22240 16449 10... |
| correct output |
|---|
| 0 4 0 1 1 ... |
| user output |
|---|
| 0 4 0 1 1 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 68
Verdict: ACCEPTED
| input |
|---|
| 100000 1112 100000 1078 267 967 420 591 908 259 4... |
| correct output |
|---|
| 7 13 73 12 23 ... |
| user output |
|---|
| 7 13 73 12 23 ... Truncated |
Test 69
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 36447 100000 18292 18192 18070 275 4878 115... |
| correct output |
|---|
| 0 1 1 2 2 ... |
| user output |
|---|
| 0 1 1 2 2 ... |
Error:
Traceback (most recent call last):
File "input/code.py", line 28, in <module>
right...Test 70
Verdict: ACCEPTED
| input |
|---|
| 100000 100000 100000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| 100000 100000 100000 100000 100000 ... |
| user output |
|---|
| 100000 100000 100000 100000 100000 ... Truncated |
