結果
| 問題 |
No.401 数字の渦巻き
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-16 23:08:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 763 bytes |
| コンパイル時間 | 319 ms |
| コンパイル使用メモリ | 82,168 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2024-06-24 16:14:55 |
| 合計ジャッジ時間 | 6,872 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 29 |
ソースコード
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])