結果

問題 No.1971 Easy Sudoku
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-20 19:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-04-21 09:09:05
合計ジャッジ時間 1,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,120 KB
testcase_01 AC 58 ms
62,720 KB
testcase_02 AC 59 ms
63,616 KB
testcase_03 AC 55 ms
63,360 KB
testcase_04 AC 58 ms
63,616 KB
testcase_05 AC 45 ms
54,144 KB
testcase_06 AC 49 ms
53,760 KB
testcase_07 AC 54 ms
64,384 KB
testcase_08 AC 44 ms
54,272 KB
testcase_09 AC 51 ms
62,676 KB
testcase_10 AC 54 ms
63,744 KB
testcase_11 AC 42 ms
53,376 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 63 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
a=deque()
for i in range(n,0,-1):
    a.append(i)
    
for i in range(n):
    print(*a)
    a.appendleft(a.pop())
0