| Task: | Ruudukko |
| Sender: | CursedTomb |
| Submission time: | 2019-10-01 22:58:38 +0300 |
| Language: | Python2 (CPython2) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | details |
| #2 | WRONG ANSWER | 0.02 s | details |
| #3 | WRONG ANSWER | 0.02 s | details |
| #4 | WRONG ANSWER | 0.01 s | details |
| #5 | WRONG ANSWER | 0.02 s | details |
| #6 | WRONG ANSWER | 0.02 s | details |
Code
import sys def pienin(lista1,lista2): lista2.sort() lista2 = list(dict.fromkeys(lista2)) for i in range(len(lista2),len(lista1)): lista2.append(0) for i in range(len(lista1)): if lista1[i] != lista2[i]: return lista1[i] return max(lista2)+1 def taulukko(n): taulukko = [] for i in range(n): taulukko.append([]) #fill array with arrays for i in range(n): for x in range(n): taulukko[i].append(None) for rivi in range(n): apu = [i for i in range(1,n+1)] if rivi == 0: taulukko[rivi]= apu else: for sarake in range(n): apu = [i for i in range(1,n+1)] apu2=[] for i in range(rivi): apu2.append(taulukko[i][sarake]) for i in range(sarake): apu2.append(taulukko[rivi][i]) taulukko[rivi][sarake]=pienin(apu,apu2) for i in range(n): for x in range(n): print taulukko[i][x], print "" n = 6 taulukko(n)
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 2 |
| correct output |
|---|
| 1 2 2 1 |
| user output |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
Test 3
Verdict: WRONG ANSWER
| 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 |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 42 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 99 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 100 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1 2 3 4 5 6 2 1 4 3 6 5 3 4 1 2 7 8 4 3 2 1 8 9 5 6 7 8 1 2 ... |
