| Task: | Spiraali |
| Sender: | severi |
| Submission time: | 2021-10-14 14:51:24 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 15 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 15 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.03 s | 1 | details |
| #2 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
njat = str(input()).split(" ")
n = int(njat[0])
t = int(njat[1])
kordinaatit = []
i = 0
while i < t:
kordinaatit.append(input().split(" "))
i += 1
spiral = []
i = 0
j = 0
while i < n:
spiral.append([])
while j < n:
spiral[i].append([])
j += 1
j = 0
i += 1
L = ""
excepterror = ["2"]
j = -1
k = 1
mutsis = n * n
i = 0
L = ""
while k < mutsis + 1:
gotostart = False
j += 1
while gotostart == False:
try:
if len(spiral[j][i]) == 0:
spiral[j][i].append(k)
k += 1
j += 1
else:
L += excepterror[2]
except IndexError:
j -= 1
i += 1
while gotostart == False:
try:
if len(spiral[j][i]) == 0:
spiral[j][i].append(k)
k += 1
i += 1
else:
excepterror[2] += k
except IndexError:
i -= 1
j -= 1
while gotostart == False:
try:
if len(spiral[j][i]) == 0:
spiral[j][i].append(k)
k += 1
j -= 1
else:
excepterror[2] += k
except IndexError:
j += 1
i -= 1
while gotostart == False:
try:
if len(spiral[j][i]) == 0:
spiral[j][i].append(k)
k += 1
i -= 1
else:
excepterror[2] += k
except IndexError:
i += 1
gotostart = True
i = 0
while i < t:
x = int(kordinaatit[i][0]) - 1
y = int(kordinaatit[i][1]) - 1
print(spiral[x][y][0])
i += 1
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 100 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| 1 36 35 34 33 ... |
| user output |
|---|
| 1 36 35 34 33 ... Truncated |
Test 2
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000 1000 371 263 915 322 946 880 53 738 ... |
| correct output |
|---|
| 773533 312166 206053 200080 593922 ... |
| user output |
|---|
| (empty) |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000000000 1000 177757853 827347032 409613589 419171337 739269360 256524697 328695530 896842209 ... |
| correct output |
|---|
| 571375684522141210 967321186816598569 762879105851175000 370065046779516790 936897883750373771 ... |
| user output |
|---|
| (empty) |
