結果

問題 No.1971 Easy Sudoku
ユーザー ra
提出日時 2022-09-07 19:01:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-11-23 00:55:32
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
num_list = list(range(1,n+1))
result = [num_list[index:]+num_list[:index] for index in range(n)]
txt = ''
for raw in result:
    txt = txt + ' '.join(list(map(str,raw)))+'\n'
print(txt)
0