結果

問題 No.401 数字の渦巻き
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-16 23:08:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 763 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 86,856 KB
実行使用メモリ 85,784 KB
最終ジャッジ日時 2023-09-06 22:02:15
合計ジャッジ時間 7,134 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())

bef = 0
nxt = [(0,1),(1,0),(0,-1),(-1,0)]
    
A = [[-1]*N for _ in range(N)]

now = 1
nx,ny = 0,0
A[nx][ny] = str(now).zfill(3)
def is_ok(x,y):
    return (0<=x<N)&(0<=y<N)
while True:
    
    flg = True
    now += 1
    while True:
        
        dx,dy = nxt[bef]
        ix,iy = nx+dx,ny+dy
        if not is_ok(ix,iy):
            bef = (bef+1)%4
            continue
        
        if A[ix][iy]!=-1:
            bef = (bef+1)%4
            continue
        A[ix][iy] = str(now).zfill(3)
        nx,ny = ix,iy
        break
    if now == N**2:
        break
    
for i in range(N):
    print(*A[i])
0