| Task: | Ruudukko |
| Sender: | ph |
| Submission time: | 2019-10-01 11:24:35 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.02 s | details |
| #2 | ACCEPTED | 0.02 s | details |
| #3 | RUNTIME ERROR | 0.02 s | details |
| #4 | RUNTIME ERROR | 0.02 s | details |
| #5 | RUNTIME ERROR | 0.03 s | details |
| #6 | RUNTIME ERROR | 0.03 s | details |
Code
n = int(input())
l = [[[] for i in range(n)] for i in range(n)]
s = []
for i in range(n):
for j in range(n):
if i == 0:
l[i][j] = j+1
s.append(j+1)
elif j == 0:
l[i][j] = l[i-1][j]+1
else:
t = s[:]
for k in range(i):
try:
t.remove(l[k][j])
except:
continue
for k in range(j):
try:
t.remove(l[i][k])
except:
continue
l[i][j] = t[0]
for i in l:
print(" ".join(list(map(str,i))))
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 2 |
| correct output |
|---|
| 1 2 2 1 |
| user output |
|---|
| 1 2 2 1 |
Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5 |
| correct output |
|---|
| 1 2 3 4 5 2 1 4 3 6 3 4 1 2 7 4 3 2 1 8 5 6 7 8 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 23, in <module>
l[i][j...Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 42 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 23, in <module>
l[i][j...Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 99 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 23, in <module>
l[i][j...Test 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 23, in <module>
l[i][j...