CSES - Datatähti 2020 alku - Results
Submission details
Task:Ruudukko
Sender:CursedTomb
Submission time:2019-10-01 22:42:31 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails
#60.02 sdetails

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):
			if x < n-1:
				sys.stdout.write(str(taulukko[i][x])+ " ")
			else:
				sys.stdout.write(str(taulukko[i][x])+ "\n")

n = input()
taulukko(n)

Test details

Test 1

Verdict:

input
1

correct output

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer

Test 2

Verdict:

input
2

correct output
1 2 
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer

Test 3

Verdict:

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 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer

Test 4

Verdict:

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 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer

Test 5

Verdict:

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 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer

Test 6

Verdict:

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 52, in <module>
    taulukko(n)
  File "input/code.py", line 17, in taulukko
    for i in range(n):
TypeError: 'str' object cannot be interpreted as an integer