結果

問題 No.401 数字の渦巻き
ユーザー hiro1729hiro1729
提出日時 2024-09-09 17:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 59,612 KB
最終ジャッジ日時 2024-09-09 17:52:40
合計ジャッジ時間 3,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,196 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 AC 37 ms
52,532 KB
testcase_03 AC 37 ms
53,540 KB
testcase_04 AC 38 ms
53,320 KB
testcase_05 AC 37 ms
53,700 KB
testcase_06 AC 35 ms
52,252 KB
testcase_07 AC 40 ms
52,532 KB
testcase_08 AC 38 ms
53,076 KB
testcase_09 AC 37 ms
52,412 KB
testcase_10 AC 37 ms
52,136 KB
testcase_11 AC 38 ms
53,492 KB
testcase_12 AC 38 ms
52,524 KB
testcase_13 AC 38 ms
53,264 KB
testcase_14 AC 38 ms
52,928 KB
testcase_15 AC 37 ms
53,280 KB
testcase_16 AC 38 ms
54,368 KB
testcase_17 AC 38 ms
53,596 KB
testcase_18 AC 37 ms
53,300 KB
testcase_19 AC 38 ms
53,376 KB
testcase_20 AC 38 ms
54,304 KB
testcase_21 AC 39 ms
54,252 KB
testcase_22 AC 39 ms
54,204 KB
testcase_23 AC 41 ms
54,332 KB
testcase_24 AC 40 ms
54,044 KB
testcase_25 AC 40 ms
54,456 KB
testcase_26 AC 40 ms
54,180 KB
testcase_27 AC 41 ms
54,620 KB
testcase_28 AC 44 ms
59,612 KB
testcase_29 AC 46 ms
59,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [['000' for _ in range(N)] for _ in range(N)]
nx, ny, c, dx, dy = 0, 0, 1, 0, 1
for i in range(N * N):
	ans[nx][ny] = str(c).zfill(3)
	if 0 <= nx + dx < N and 0 <= ny + dy < N and ans[nx + dx][ny + dy] == '000':
		nx += dx
		ny += dy
	else:
		dx, dy = dy, -dx
		nx += dx
		ny += dy
	c += 1
for i in ans:
	print(*i)
0