| Task: | Ratsun reitit |
| Sender: | pinger80 |
| Submission time: | 2020-10-07 03:55:17 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #2 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #3 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #4 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #5 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #6 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #7 | RUNTIME ERROR | 0.03 s | 1, 2, 3 | details |
| #8 | RUNTIME ERROR | 0.03 s | 2, 3 | details |
| #9 | RUNTIME ERROR | 0.03 s | 2, 3 | details |
| #10 | RUNTIME ERROR | 0.03 s | 2, 3 | details |
| #11 | RUNTIME ERROR | 0.03 s | 3 | details |
| #12 | RUNTIME ERROR | 0.03 s | 3 | details |
| #13 | RUNTIME ERROR | 0.03 s | 3 | details |
Code
n = int(input())
taulukko = [[999 for y in range(n)] for x in range(n)]
taulukko[0][0] = 0
x, y = 0, 0
# moves = 1,2 . 2,1 . -1,-2 . -2,-1 . -1, 2 . -2, 1 . 1, -2 . 2, -1.
def askel(x,y):
global taulukko
global n
taulukko[x][y] = min(taulukko[x][y],taulukko[min(n-1,x+1)][min(n-1,y+2)],taulukko[min(n-1,x+2)][min(n-1,y+1)],taulukko[max(0,x-1)][max(0,y-2)],taulukko[max(0,x-2)][max(0,y-1)],taulukko[max(0,x-1)][min(n-1,y+2)],taulukko[max(0,x-2)][min(n-1,y+1)],taulukko[min(n-1,x+1)][max(0,y-2)],taulukko[min(n-1,x+2)][max(0,y-1)])+1
askel(min(n-1,x+1), min(n-1,y+2))
askel(min(n-1,x+2), min(n-1,y+1))
askel(max(0,x-1), max(0,y-2))
askel(max(0,x-2), max(0,y-1))
askel(max(0,x-1), min(n-1,y+2))
askel(max(0,x-2), min(n-1,y+1))
askel(min(n-1,x+1), max(0,y-2))
askel(min(n-1,x+2), max(0,y-1))
if 999 not in taulukko:
return None
askel(x,y)
for x in taulukko:
print(*x, sep = " ")
Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4 |
| correct output |
|---|
| 0 3 2 5 3 4 1 2 2 1 4 3 5 2 3 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 2
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5 |
| correct output |
|---|
| 0 3 2 3 2 3 4 1 2 3 2 1 4 3 2 3 2 3 2 3 2 3 2 3 4 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 6 |
| correct output |
|---|
| 0 3 2 3 2 3 3 4 1 2 3 4 2 1 4 3 2 3 3 2 3 2 3 4 2 3 2 3 4 3 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 4
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 7 |
| correct output |
|---|
| 0 3 2 3 2 3 4 3 4 1 2 3 4 3 2 1 4 3 2 3 4 3 2 3 2 3 4 3 2 3 2 3 4 3 4 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 5
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 8 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 3 4 1 2 3 4 3 4 2 1 4 3 2 3 4 5 3 2 3 2 3 4 3 4 2 3 2 3 4 3 4 5 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 6
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 9 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 3 4 1 2 3 4 3 4 5 2 1 4 3 2 3 4 5 4 3 2 3 2 3 4 3 4 5 2 3 2 3 4 3 4 5 4 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 7
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 10 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 3 4 1 2 3 4 3 4 5 6 2 1 4 3 2 3 4 5 4 5 3 2 3 2 3 4 3 4 5 6 2 3 2 3 4 3 4 5 4 5 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 8
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 25 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 9
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 49 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 10
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 50 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 11
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 75 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 12
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 99 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...Test 13
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 26, in <module>
askel(...