結果

問題 No.401 数字の渦巻き
ユーザー H20H20
提出日時 2020-11-20 09:09:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 59,912 KB
最終ジャッジ日時 2024-07-23 11:58:36
合計ジャッジ時間 2,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,304 KB
testcase_01 AC 36 ms
53,632 KB
testcase_02 AC 36 ms
52,656 KB
testcase_03 AC 36 ms
53,040 KB
testcase_04 AC 36 ms
52,004 KB
testcase_05 AC 36 ms
53,144 KB
testcase_06 AC 37 ms
53,620 KB
testcase_07 AC 40 ms
53,736 KB
testcase_08 AC 38 ms
52,332 KB
testcase_09 AC 36 ms
52,892 KB
testcase_10 AC 38 ms
53,216 KB
testcase_11 AC 38 ms
52,664 KB
testcase_12 AC 38 ms
52,940 KB
testcase_13 AC 38 ms
53,084 KB
testcase_14 AC 39 ms
53,132 KB
testcase_15 AC 39 ms
54,148 KB
testcase_16 AC 38 ms
53,076 KB
testcase_17 AC 39 ms
54,188 KB
testcase_18 AC 40 ms
53,464 KB
testcase_19 AC 39 ms
53,696 KB
testcase_20 AC 40 ms
53,608 KB
testcase_21 AC 40 ms
54,316 KB
testcase_22 AC 40 ms
53,752 KB
testcase_23 AC 39 ms
53,288 KB
testcase_24 AC 40 ms
53,712 KB
testcase_25 AC 40 ms
54,384 KB
testcase_26 AC 42 ms
54,216 KB
testcase_27 AC 41 ms
53,948 KB
testcase_28 AC 44 ms
59,912 KB
testcase_29 AC 45 ms
59,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [1,0,-1,0]
Y = [0,1,0,-1]
MAP = [['0'.zfill(3)] * N for i in range(N)]
cnt = 1
x = 0
y = 0
di = 0
while cnt <= N**2:
    MAP[y][x]=str(cnt).zfill(3)
    if x + X[di] <0 or x+X[di]>=N or y+Y[di]<0 or y+Y[di]>=N or MAP[y+Y[di]][x+X[di]]!='000':
        di = (di +1)%4
    x += X[di]
    y += Y[di]
    cnt += 1

for i in range(N):
    print(*MAP[i])
0