結果

問題 No.1971 Easy Sudoku
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-20 20:28:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 64,388 KB
最終ジャッジ日時 2024-04-21 09:53:27
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,388 KB
testcase_01 AC 61 ms
62,788 KB
testcase_02 AC 62 ms
63,448 KB
testcase_03 AC 60 ms
63,296 KB
testcase_04 AC 64 ms
63,108 KB
testcase_05 AC 49 ms
53,108 KB
testcase_06 AC 47 ms
52,480 KB
testcase_07 AC 62 ms
63,632 KB
testcase_08 AC 50 ms
53,940 KB
testcase_09 AC 62 ms
63,252 KB
testcase_10 AC 64 ms
64,388 KB
testcase_11 AC 47 ms
52,212 KB
testcase_12 AC 47 ms
52,796 KB
testcase_13 AC 62 ms
64,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

for i in range(n):
    a=[0]*n
    for j in range(1,n+1):
        a[(i+j) % n] = j
    print(*a)
0