結果

問題 No.401 数字の渦巻き
ユーザー rlangevinrlangevin
提出日時 2024-05-25 15:24:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 61,228 KB
最終ジャッジ日時 2024-05-25 15:24:50
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,556 KB
testcase_01 AC 39 ms
53,072 KB
testcase_02 AC 39 ms
53,484 KB
testcase_03 AC 39 ms
54,020 KB
testcase_04 AC 39 ms
52,460 KB
testcase_05 AC 39 ms
52,880 KB
testcase_06 AC 41 ms
53,000 KB
testcase_07 AC 40 ms
53,316 KB
testcase_08 AC 41 ms
52,952 KB
testcase_09 AC 39 ms
53,584 KB
testcase_10 AC 40 ms
53,024 KB
testcase_11 AC 40 ms
53,444 KB
testcase_12 AC 40 ms
53,172 KB
testcase_13 AC 39 ms
53,176 KB
testcase_14 AC 41 ms
52,812 KB
testcase_15 AC 42 ms
53,836 KB
testcase_16 AC 41 ms
53,456 KB
testcase_17 AC 40 ms
53,488 KB
testcase_18 AC 42 ms
53,312 KB
testcase_19 AC 42 ms
53,500 KB
testcase_20 AC 42 ms
54,156 KB
testcase_21 AC 41 ms
54,352 KB
testcase_22 AC 44 ms
54,932 KB
testcase_23 AC 42 ms
53,480 KB
testcase_24 AC 44 ms
54,504 KB
testcase_25 AC 43 ms
55,244 KB
testcase_26 AC 45 ms
53,500 KB
testcase_27 AC 44 ms
54,784 KB
testcase_28 AC 46 ms
60,988 KB
testcase_29 AC 48 ms
61,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [[-1] * N for _ in range(N)]
x, y = 0, 0
dx = [0, 1, 0, -1]
dy = [1, 0, -1, 0]

def f(s):
    return "0" * (3 - len(str(s))) + str(s)

k = 0
for i in range(N*N):
    ans[x][y] = f(i + 1)
    nx, ny = x + dx[k], y + dy[k]
    if nx < 0 or nx > N - 1 or ny < 0 or ny > N - 1:
        k = (k + 1) % 4
    elif ans[nx][ny] != -1:
        k = (k + 1) % 4
    x, y = x + dx[k], y + dy[k]
       
for a in ans:
    print(*a) 
0