結果

問題 No.1971 Easy Sudoku
ユーザー KeroruKeroru
提出日時 2022-06-10 21:41:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 64,308 KB
最終ジャッジ日時 2024-09-21 06:07:21
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,392 KB
testcase_01 AC 50 ms
61,884 KB
testcase_02 AC 49 ms
62,532 KB
testcase_03 AC 47 ms
61,512 KB
testcase_04 AC 48 ms
63,336 KB
testcase_05 AC 40 ms
54,000 KB
testcase_06 AC 39 ms
53,280 KB
testcase_07 AC 53 ms
64,032 KB
testcase_08 AC 43 ms
53,812 KB
testcase_09 AC 47 ms
61,948 KB
testcase_10 AC 51 ms
63,816 KB
testcase_11 AC 38 ms
52,336 KB
testcase_12 AC 39 ms
52,772 KB
testcase_13 AC 49 ms
64,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[i+1for i in range(n)]
for i in range(n):print(*(a[i:]+a[:i]))
0