CSES - Datatähti 2022 alku - Results
Submission details
Task:Alue 50
Sender:eerosahlberg
Submission time:2021-10-04 09:33:25 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttimescore
#10.00 s0details

Code

kartta = []
tempList = []

for i in range(50):
    for j in range(50):
        tempList.append(None)
    kartta.append(tempList)
    tempList = []

for i in range(100):
    robot = input().split()

    first = robot[0]
    kartta[50//first-1][50&first-1] = first 

print(kartta)

Test details

Test 1

Verdict:

input
2472 1981 2472 831 2472 949 24...

correct output
2067 2236 1421 55 2484 276 180...

user output
kartta = []
tempList = []

for i in range(50):
    for j in range(50):
...