CSES - Datatähti 2021 alku - Results
Submission details
Task:Ratsun reitit
Sender:Uumas
Submission time:2020-10-03 04:08:21 +0300
Language:PyPy3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1, 2, 3details
#20.05 s1, 2, 3details
#30.05 s1, 2, 3details
#40.05 s1, 2, 3details
#50.05 s1, 2, 3details
#60.05 s1, 2, 3details
#70.05 s1, 2, 3details
#80.07 s2, 3details
#90.07 s2, 3details
#100.07 s2, 3details
#110.07 s3details
#120.08 s3details
#130.07 s3details

Code

#!/usr/bin/env python3

n = int(input())

output = [[0, 3, 2, 5, 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], 
[5, 2, 3, 2, 3, 4, 3, 4, 5, 6], 
[2, 3, 2, 3, 4, 3, 4, 5, 4, 5], 
[3, 4, 3, 4, 3, 4, 5, 4, 5, 6], 
[4, 3, 4, 3, 4, 5, 4, 5, 6, 5], 
[5, 4, 5, 4, 5, 4, 5, 6, 5, 6], 
[4, 5, 4, 5, 4, 5, 6, 5, 6, 7], 
[5, 6, 5, 6, 5, 6, 5, 6, 7, 6]]

for i in range(n):
    for j in range(n):
        print(output[i -1][j - 1], end=' ')
    print()

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
4

correct output
0 3 2 5 
3 4 1 2 
2 1 4 3 
5 2 3 2 

user output
6 5 6 5 
5 0 3 2 
6 3 4 1 
5 2 1 4 

Test 2

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 
5 0 3 2 5 
6 3 4 1 2 
5 2 1 4 3 
6 5 2 3 2 

Test 3

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 5 
5 0 3 2 5 2 
6 3 4 1 2 3 
5 2 1 4 3 2 
6 5 2 3 2 3 
...

Test 4

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 5 6 
5 0 3 2 5 2 3 
6 3 4 1 2 3 4 
5 2 1 4 3 2 3 
6 5 2 3 2 3 4 
...

Test 5

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 5 6 5 
5 0 3 2 5 2 3 4 
6 3 4 1 2 3 4 3 
5 2 1 4 3 2 3 4 
6 5 2 3 2 3 4 3 
...

Test 6

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 5 6 5 6 
5 0 3 2 5 2 3 4 5 
6 3 4 1 2 3 4 3 4 
5 2 1 4 3 2 3 4 5 
6 5 2 3 2 3 4 3 4 
...

Test 7

Group: 1, 2, 3

Verdict:

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
6 5 6 5 6 5 6 5 6 7 
5 0 3 2 5 2 3 4 5 4 
6 3 4 1 2 3 4 3 4 5 
5 2 1 4 3 2 3 4 5 4 
6 5 2 3 2 3 4 3 4 5 
...

Test 8

Group: 2, 3

Verdict:

input
25

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range

Test 9

Group: 2, 3

Verdict:

input
49

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range

Test 10

Group: 2, 3

Verdict:

input
50

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range

Test 11

Group: 3

Verdict:

input
75

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range

Test 12

Group: 3

Verdict:

input
99

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range

Test 13

Group: 3

Verdict:

input
100

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
6 5 6 5 6 5 6 5 6 7 6 

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    print(output[i -1][j - 1], end=' ')
IndexError: list index out of range