結果
問題 | 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,mathinput = sys.stdin.readlineN = int(input())bef = 0nxt = [(0,1),(1,0),(0,-1),(-1,0)]if N==1:print('001')exit()A = [[-1]*N for _ in range(N)]now = 1nx,ny = 0,0A[nx][ny] = str(now).zfill(3)def is_ok(x,y):return (0<=x<N)&(0<=y<N)while True:flg = Truenow += 1while True:dx,dy = nxt[bef]ix,iy = nx+dx,ny+dyif not is_ok(ix,iy):bef = (bef+1)%4continueif A[ix][iy]!=-1:bef = (bef+1)%4continueA[ix][iy] = str(now).zfill(3)nx,ny = ix,iybreakif now == N**2:breakfor i in range(N):print(*A[i])