結果

問題 No.1971 Easy Sudoku
ユーザー june19312june19312
提出日時 2022-06-10 22:22:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 67,612 KB
最終ジャッジ日時 2024-09-21 06:31:23
合計ジャッジ時間 1,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,348 KB
testcase_01 AC 50 ms
63,868 KB
testcase_02 AC 54 ms
65,588 KB
testcase_03 AC 50 ms
64,600 KB
testcase_04 AC 51 ms
65,636 KB
testcase_05 AC 42 ms
54,828 KB
testcase_06 AC 41 ms
54,660 KB
testcase_07 AC 52 ms
67,612 KB
testcase_08 AC 43 ms
54,744 KB
testcase_09 AC 49 ms
63,944 KB
testcase_10 AC 53 ms
66,736 KB
testcase_11 AC 39 ms
54,724 KB
testcase_12 AC 40 ms
54,024 KB
testcase_13 AC 51 ms
66,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
t=deque()

for i in range(1,n+1):
    t.append(i)
    
ans=[]
for i in range(n):
    tmp=[]
    for ii,vv in enumerate(t):
        tmp.append(vv)
    ans.append(tmp)
    t.append(t.popleft())

for i in ans:
    print(*list(i))
0