結果

問題 No.1971 Easy Sudoku
ユーザー KudeKude
提出日時 2022-06-10 21:21:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 81,440 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2023-10-21 04:45:37
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,152 KB
testcase_01 AC 50 ms
61,676 KB
testcase_02 AC 49 ms
61,676 KB
testcase_03 AC 49 ms
61,676 KB
testcase_04 AC 49 ms
61,676 KB
testcase_05 AC 42 ms
53,152 KB
testcase_06 AC 40 ms
53,152 KB
testcase_07 AC 50 ms
63,724 KB
testcase_08 AC 41 ms
53,152 KB
testcase_09 AC 49 ms
61,676 KB
testcase_10 AC 52 ms
63,872 KB
testcase_11 AC 39 ms
53,152 KB
testcase_12 AC 39 ms
53,152 KB
testcase_13 AC 50 ms
63,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(range(1, n + 1))
for _ in range(n):
    print(*a)
    a.append(a.pop(0))
0