| Task: | Sorting coins |
| Sender: | aalto25c_007 |
| Submission time: | 2025-09-17 16:36:55 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.06 s | details |
| #2 | RUNTIME ERROR | 0.06 s | details |
| #3 | RUNTIME ERROR | 0.06 s | details |
| #4 | RUNTIME ERROR | 0.06 s | details |
| #5 | RUNTIME ERROR | 0.06 s | details |
| #6 | WRONG ANSWER | 0.04 s | details |
| #7 | RUNTIME ERROR | 0.06 s | details |
| #8 | WRONG ANSWER | 0.04 s | details |
| #9 | WRONG ANSWER | 0.04 s | details |
| #10 | WRONG ANSWER | 0.04 s | details |
| #11 | RUNTIME ERROR | 0.06 s | details |
| #12 | WRONG ANSWER | 0.04 s | details |
| #13 | RUNTIME ERROR | 0.07 s | details |
| #14 | WRONG ANSWER | 0.04 s | details |
| #15 | RUNTIME ERROR | 0.06 s | details |
| #16 | WRONG ANSWER | 0.04 s | details |
| #17 | RUNTIME ERROR | 0.06 s | details |
| #18 | WRONG ANSWER | 0.04 s | details |
| #19 | WRONG ANSWER | 0.04 s | details |
| #20 | WRONG ANSWER | 0.04 s | details |
| #21 | RUNTIME ERROR | 0.06 s | details |
| #22 | RUNTIME ERROR | 0.06 s | details |
| #23 | RUNTIME ERROR | 0.06 s | details |
| #24 | WRONG ANSWER | 0.04 s | details |
| #25 | WRONG ANSWER | 0.04 s | details |
| #26 | WRONG ANSWER | 0.04 s | details |
| #27 | RUNTIME ERROR | 0.06 s | details |
| #28 | WRONG ANSWER | 0.04 s | details |
| #29 | WRONG ANSWER | 0.04 s | details |
| #30 | WRONG ANSWER | 0.04 s | details |
| #31 | RUNTIME ERROR | 0.07 s | details |
| #32 | RUNTIME ERROR | 0.07 s | details |
| #33 | WRONG ANSWER | 0.04 s | details |
| #34 | WRONG ANSWER | 0.04 s | details |
| #35 | RUNTIME ERROR | 0.07 s | details |
| #36 | RUNTIME ERROR | 0.06 s | details |
| #37 | RUNTIME ERROR | 0.06 s | details |
| #38 | RUNTIME ERROR | 0.06 s | details |
| #39 | RUNTIME ERROR | 0.07 s | details |
| #40 | RUNTIME ERROR | 0.07 s | details |
| #41 | WRONG ANSWER | 0.05 s | details |
| #42 | RUNTIME ERROR | 0.07 s | details |
| #43 | RUNTIME ERROR | 0.07 s | details |
| #44 | WRONG ANSWER | 0.05 s | details |
| #45 | RUNTIME ERROR | 0.07 s | details |
| #46 | WRONG ANSWER | 0.05 s | details |
| #47 | WRONG ANSWER | 0.05 s | details |
| #48 | WRONG ANSWER | 0.04 s | details |
| #49 | RUNTIME ERROR | 0.06 s | details |
| #50 | WRONG ANSWER | 0.05 s | details |
| #51 | RUNTIME ERROR | 0.18 s | details |
| #52 | RUNTIME ERROR | 0.58 s | details |
| #53 | TIME LIMIT EXCEEDED | -- | details |
| #54 | TIME LIMIT EXCEEDED | -- | details |
| #55 | WRONG ANSWER | 0.22 s | details |
| #56 | RUNTIME ERROR | 0.19 s | details |
| #57 | RUNTIME ERROR | 0.17 s | details |
| #58 | TIME LIMIT EXCEEDED | -- | details |
| #59 | TIME LIMIT EXCEEDED | -- | details |
| #60 | TIME LIMIT EXCEEDED | -- | details |
Code
n,m = [int(x) for x in input().split()]
coins = [int(x) for x in input().split()]
holes = [int(x) for x in input().split()]
solution = []
sol_hash = {}
for coin in coins:
if coin not in sol_hash:
for index in range(m):
if holes[index] >= coin:
print(holes[index], end=' ')
print(index)
sol_hash[coin] = index + 1
break
solution.append(sol_hash[coin])
for elt in solution:
print(elt, end=' ')
Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 1 10 7 |
| correct output |
|---|
| 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2 1 5 1 2 |
| correct output |
|---|
| 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 2 3 6 9 7 3 5 |
| correct output |
|---|
| 1 4 |
| user output |
|---|
| 7 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 2 1 7 9 3 |
| correct output |
|---|
| 2 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 3 2 7 1 5 2 5 |
| correct output |
|---|
| 3 1 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 3 6 8 1 7 2 5 2 3 8 9 |
| correct output |
|---|
| 5 1 5 |
| user output |
|---|
| 8 4 2 0 8 4 5 1 5 |
Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 3 2 1 10 1 6 7 |
| correct output |
|---|
| 1 3 1 |
| user output |
|---|
| 6 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 4 4 5 6 9 6 8 4 10 9 |
| correct output |
|---|
| 1 1 3 1 |
| user output |
|---|
| 8 0 8 0 10 2 1 1 3 1 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 4 3 8 2 4 2 6 9 1 |
| correct output |
|---|
| 2 1 1 1 |
| user output |
|---|
| 9 1 6 0 6 0 2 1 1 1 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 4 3 1 2 4 7 3 5 8 |
| correct output |
|---|
| 1 1 2 3 |
| user output |
|---|
| 3 0 3 0 5 1 8 2 1 1 2 3 |
Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 5 3 4 10 10 5 1 1 9 9 |
| correct output |
|---|
| 2 4 4 2 1 |
| user output |
|---|
| 9 1 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 5 9 1 6 7 5 6 1 1 2 3 4 4 9 10 10 |
| correct output |
|---|
| 1 7 7 7 7 |
| user output |
|---|
| 1 0 9 6 9 6 9 6 1 7 7 7 7 |
Test 13
Verdict: RUNTIME ERROR
| input |
|---|
| 5 1 4 5 10 8 5 3 |
| correct output |
|---|
| 2 2 2 2 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 5 9 7 5 8 5 5 1 10 3 9 4 6 9 3 5 |
| correct output |
|---|
| 2 2 2 2 2 |
| user output |
|---|
| 10 1 10 1 10 1 2 2 2 2 2 |
Test 15
Verdict: RUNTIME ERROR
| input |
|---|
| 5 1 5 5 1 2 4 4 |
| correct output |
|---|
| 2 2 1 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 5 8 3 1 2 8 8 1 3 5 5 5 7 8 9 |
| correct output |
|---|
| 2 1 2 7 7 |
| user output |
|---|
| 3 1 1 0 3 1 8 6 2 1 2 7 7 |
Test 17
Verdict: RUNTIME ERROR
| input |
|---|
| 5 2 5 2 8 10 5 1 1 |
| correct output |
|---|
| 3 3 3 3 3 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 18
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 3 1 6 8 1 5 8 |
| correct output |
|---|
| 1 1 2 2 1 |
| user output |
|---|
| 5 0 5 0 8 1 8 1 1 1 2 2 1 |
Test 19
Verdict: WRONG ANSWER
| input |
|---|
| 5 8 5 8 7 7 8 2 3 7 9 9 9 10 10 |
| correct output |
|---|
| 3 4 3 3 4 |
| user output |
|---|
| 7 2 9 3 7 2 3 4 3 3 4 |
Test 20
Verdict: WRONG ANSWER
| input |
|---|
| 5 6 4 3 10 3 6 10 8 7 9 4 1 |
| correct output |
|---|
| 1 1 1 1 1 |
| user output |
|---|
| 10 0 10 0 10 0 10 0 1 1 1 1 1 |
Test 21
Verdict: RUNTIME ERROR
| input |
|---|
| 10 16 1 2 7 7 10 9 1 4 6 9 3 1 5 7 5 8 9 5 6 3 1 2 8 8 3 ... |
| correct output |
|---|
| 1 1 4 4 17 7 1 3 4 7 |
| user output |
|---|
| 3 0 3 0 7 3 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 22
Verdict: RUNTIME ERROR
| input |
|---|
| 10 4 8 10 5 2 5 3 1 9 5 9 1 1 7 5 |
| correct output |
|---|
| 5 5 3 3 3 3 1 5 3 5 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 23
Verdict: RUNTIME ERROR
| input |
|---|
| 10 4 6 8 1 4 10 1 10 3 1 1 5 8 9 3 |
| correct output |
|---|
| 2 2 1 1 5 1 5 1 1 1 |
| user output |
|---|
| 8 1 8 1 5 0 5 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 24
Verdict: WRONG ANSWER
| input |
|---|
| 10 16 8 4 1 7 3 10 1 8 9 5 7 3 9 9 9 10 2 10 8 5 8 7 7 8 ... |
| correct output |
|---|
| 3 1 1 1 1 6 1 3 3 1 |
| user output |
|---|
| 9 2 7 0 7 0 7 0 7 0 ... |
Test 25
Verdict: WRONG ANSWER
| input |
|---|
| 10 11 4 4 4 6 6 3 7 9 6 4 1 2 3 3 4 4 7 8 9 10 10 |
| correct output |
|---|
| 5 5 5 7 7 3 7 9 7 5 |
| user output |
|---|
| 4 4 7 6 3 2 7 6 9 8 ... |
Test 26
Verdict: WRONG ANSWER
| input |
|---|
| 10 17 9 10 1 3 6 8 6 9 10 9 9 2 6 1 2 4 9 3 10 6 1 4 9 4 8... |
| correct output |
|---|
| 1 9 1 1 1 1 1 1 9 1 |
| user output |
|---|
| 9 0 10 8 9 0 9 0 9 0 ... |
Test 27
Verdict: RUNTIME ERROR
| input |
|---|
| 10 5 2 4 8 3 2 7 7 2 9 1 4 6 1 6 4 |
| correct output |
|---|
| 1 1 6 1 1 6 6 1 6 1 |
| user output |
|---|
| 4 0 4 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 28
Verdict: WRONG ANSWER
| input |
|---|
| 10 6 8 5 7 2 7 3 6 7 1 9 1 2 2 6 9 9 |
| correct output |
|---|
| 5 4 5 2 5 4 4 5 1 5 |
| user output |
|---|
| 9 4 6 3 9 4 2 1 6 3 ... |
Test 29
Verdict: WRONG ANSWER
| input |
|---|
| 10 14 3 9 1 10 7 4 9 6 8 6 1 1 2 3 3 5 5 6 7 8 9 9 10 10 |
| correct output |
|---|
| 4 11 1 13 9 6 11 8 10 8 |
| user output |
|---|
| 3 3 9 10 1 0 10 12 7 8 ... |
Test 30
Verdict: WRONG ANSWER
| input |
|---|
| 10 2 3 8 2 3 4 7 1 1 7 2 5 8 |
| correct output |
|---|
| 1 2 1 1 1 2 1 1 2 1 |
| user output |
|---|
| 5 0 8 1 5 0 5 0 8 1 ... |
Test 31
Verdict: RUNTIME ERROR
| input |
|---|
| 100 109 670851894 542702872 156237497 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| 720647879 0 720647879 0 720647879 0 720647879 0 720647879 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 32
Verdict: RUNTIME ERROR
| input |
|---|
| 100 104 65679420 148186648 745144547 5... |
| correct output |
|---|
| 8 16 75 8 68 22 48 45 56 99 93... |
| user output |
|---|
| 70387336 7 148253987 15 753091523 74 70387336 7 662743495 67 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 33
Verdict: WRONG ANSWER
| input |
|---|
| 100 120 327701031 843462639 697056609 ... |
| correct output |
|---|
| 1 10 2 1 1 10 1 6 1 2 1 2 2 2 ... |
| user output |
|---|
| 426874045 0 868676108 9 725835412 1 426874045 0 426874045 0 ... Truncated |
Test 34
Verdict: WRONG ANSWER
| input |
|---|
| 100 87 973756781 787585117 426104879 ... |
| correct output |
|---|
| 30 3 3 3 3 3 3 3 7 1 1 1 1 3 3... |
| user output |
|---|
| 994457181 29 869160791 2 869160791 2 869160791 2 869160791 2 ... Truncated |
Test 35
Verdict: RUNTIME ERROR
| input |
|---|
| 100 30 259467422 179425210 302226641 ... |
| correct output |
|---|
| 10 6 11 26 21 5 4 25 6 25 6 25... |
| user output |
|---|
| 275839920 9 199401091 5 320484640 10 829076125 25 626020089 20 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 36
Verdict: RUNTIME ERROR
| input |
|---|
| 100 17 619610888 28975240 267230415 3... |
| correct output |
|---|
| 11 2 4 7 18 3 10 11 17 10 3 15... |
| user output |
|---|
| 627943592 10 68386156 1 318723698 3 374925825 6 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 37
Verdict: RUNTIME ERROR
| input |
|---|
| 100 2 536076934 655217422 133320243 ... |
| correct output |
|---|
| 1 1 1 3 3 3 1 3 1 3 1 3 1 1 3 ... |
| user output |
|---|
| 745785591 0 745785591 0 745785591 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 38
Verdict: RUNTIME ERROR
| input |
|---|
| 100 33 789380894 994229768 42675899 9... |
| correct output |
|---|
| 1 34 1 1 1 1 1 1 1 1 1 1 1 1 1... |
| user output |
|---|
| 810439799 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 39
Verdict: RUNTIME ERROR
| input |
|---|
| 100 47 246778198 676999670 608531210 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| 974118598 0 974118598 0 974118598 0 974118598 0 974118598 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 40
Verdict: RUNTIME ERROR
| input |
|---|
| 100 123 886976100 68201365 172296705 8... |
| correct output |
|---|
| 104 10 23 102 55 94 62 53 10 1... |
| user output |
|---|
| 891737518 103 77227072 9 182231958 22 873233376 101 485945549 54 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 41
Verdict: WRONG ANSWER
| input |
|---|
| 200 380 317524454 41051177 567149094 1... |
| correct output |
|---|
| 1 1 4 1 1 14 8 8 8 14 1 8 1 1 ... |
| user output |
|---|
| 530582683 0 530582683 0 638253771 3 530582683 0 530582683 0 ... Truncated |
Test 42
Verdict: RUNTIME ERROR
| input |
|---|
| 200 46 392347176 726442861 545265216 ... |
| correct output |
|---|
| 17 27 22 17 17 22 24 24 14 17 ... |
| user output |
|---|
| 427553162 16 740907425 26 546801186 21 427553162 16 427553162 16 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 43
Verdict: RUNTIME ERROR
| input |
|---|
| 200 90 248312993 106444472 194127938 ... |
| correct output |
|---|
| 21 6 15 26 1 32 26 26 68 85 90... |
| user output |
|---|
| 248962186 20 108495061 5 206226076 14 304097823 25 30226070 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 44
Verdict: WRONG ANSWER
| input |
|---|
| 200 340 798996025 496231366 876215524 ... |
| correct output |
|---|
| 270 170 293 217 337 3 53 124 2... |
| user output |
|---|
| 805923900 269 500032027 169 878762342 292 625621450 216 994179078 336 ... Truncated |
Test 45
Verdict: RUNTIME ERROR
| input |
|---|
| 200 373 589488280 542132074 375966293 ... |
| correct output |
|---|
| 1 1 1 3 1 1 1 1 3 1 6 1 1 1 6 ... |
| user output |
|---|
| 703658432 0 703658432 0 703658432 0 867816260 2 703658432 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 46
Verdict: WRONG ANSWER
| input |
|---|
| 200 385 196646115 242041521 295990544 ... |
| correct output |
|---|
| 2 2 2 5 5 5 2 5 24 2 2 13 1 2 ... |
| user output |
|---|
| 602307004 1 602307004 1 602307004 1 880947301 4 880947301 4 ... Truncated |
Test 47
Verdict: WRONG ANSWER
| input |
|---|
| 200 171 393795758 726432748 126764724 ... |
| correct output |
|---|
| 64 127 18 63 59 13 8 17 65 1 1... |
| user output |
|---|
| 397812672 63 727386620 126 132131639 17 393114841 62 353109274 58 ... Truncated |
Test 48
Verdict: WRONG ANSWER
| input |
|---|
| 200 202 942051979 368818134 268535120 ... |
| correct output |
|---|
| 5 1 1 1 5 1 1 1 1 1 1 1 1 1 5 ... |
| user output |
|---|
| 994092609 4 910736781 0 910736781 0 910736781 0 994092609 4 ... Truncated |
Test 49
Verdict: RUNTIME ERROR
| input |
|---|
| 200 45 633221062 364986147 972778007 ... |
| correct output |
|---|
| 1 1 46 1 1 1 2 5 1 1 2 1 1 1 1... |
| user output |
|---|
| 756688720 0 756688720 0 |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 50
Verdict: WRONG ANSWER
| input |
|---|
| 200 338 454221387 88895945 317597498 4... |
| correct output |
|---|
| 142 29 99 134 182 88 235 278 2... |
| user output |
|---|
| 455902288 141 93627985 28 319224272 98 435342394 133 568256577 181 ... Truncated |
Test 51
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 28757 118267157 851671329 411822891 ... |
| correct output |
|---|
| 1 17 1 1 1 5 1 1 1 1 1 5 1 1 1... |
| user output |
|---|
| 545727343 0 995807423 16 545727343 0 545727343 0 545727343 0 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 52
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 18305 702302355 6062709 611429541 54... |
| correct output |
|---|
| 12872 122 11266 9987 7473 9155... |
| user output |
|---|
| 702305601 12871 6074848 121 611564445 11265 541840269 9986 409101702 7472 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 53
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 95231 656622458 70589811 632582055 4... |
| correct output |
|---|
| 62527 6715 60175 47354 58575 8... |
| user output |
|---|
| (empty) |
Test 54
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 30329 45713456 729104659 758685635 8... |
| correct output |
|---|
| 1333 22090 23000 25105 6039 20... |
| user output |
|---|
| (empty) |
Test 55
Verdict: WRONG ANSWER
| input |
|---|
| 100000 31228 247919198 225373356 731438419 ... |
| correct output |
|---|
| 1 1 1 1 16 1 1 1 1 1 1 1 1 1 1... |
| user output |
|---|
| 854360270 0 854360270 0 854360270 0 854360270 0 976759655 15 ... Truncated |
Test 56
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 30512 675116653 115272339 718909731 ... |
| correct output |
|---|
| 20571 3556 21916 12569 11110 2... |
| user output |
|---|
| 675122422 20570 115385737 3555 718932339 21915 412728202 12568 364641956 11109 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 57
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 75350 239099439 812355621 986530470 ... |
| correct output |
|---|
| 1 2 203 1 2 1 2 2 1 1 203 17 2... |
| user output |
|---|
| 309374238 0 822676553 1 996395917 202 309374238 0 822676553 1 ... Truncated |
Error:
Traceback (most recent call last):
File "input/code.py", line 16, in <module>
soluti...Test 58
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 87421 916970017 111389270 307679149 ... |
| correct output |
|---|
| 80168 9865 27064 35762 21561 8... |
| user output |
|---|
| (empty) |
Test 59
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 37351 409368120 919782880 717179531 ... |
| correct output |
|---|
| 15405 34298 26803 6413 9862 63... |
| user output |
|---|
| (empty) |
Test 60
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 92760 574361642 194853225 729709108 ... |
| correct output |
|---|
| 53251 18025 67482 3845 17916 7... |
| user output |
|---|
| (empty) |
