結果
| 問題 | No.401 数字の渦巻き |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-16 23:08:51 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 763 bytes |
| 記録 | |
| コンパイル時間 | 392 ms |
| コンパイル使用メモリ | 85,232 KB |
| 実行使用メモリ | 130,920 KB |
| 最終ジャッジ日時 | 2026-03-10 20:17:14 |
| 合計ジャッジ時間 | 8,357 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 TLE * 1 |
ソースコード
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])