結果
問題 | No.401 数字の渦巻き |
ユーザー |
|
提出日時 | 2023-06-16 23:09:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 795 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 62,720 KB |
最終ジャッジ日時 | 2024-06-24 16:15:29 |
合計ジャッジ時間 | 2,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
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)] if N==1: print('001') exit() 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])