結果

問題 No.1169 Row and Column and Diagonal
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 78,756 KB
最終ジャッジ日時 2024-09-25 13:00:34
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,760 KB
testcase_01 AC 37 ms
52,148 KB
testcase_02 AC 38 ms
52,324 KB
testcase_03 AC 38 ms
52,440 KB
testcase_04 AC 38 ms
52,220 KB
testcase_05 AC 39 ms
52,328 KB
testcase_06 AC 56 ms
67,832 KB
testcase_07 AC 60 ms
74,624 KB
testcase_08 AC 66 ms
76,744 KB
testcase_09 AC 70 ms
77,300 KB
testcase_10 AC 83 ms
78,068 KB
testcase_11 AC 83 ms
78,204 KB
testcase_12 AC 85 ms
78,464 KB
testcase_13 AC 82 ms
78,756 KB
testcase_14 AC 83 ms
78,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

ans=[[0]*n for _ in range(n)]
for i in range(1,n+1):
    for j in range(1,n+1):
        ans[i-1][j-1]=(2*i-j)%n
        if ans[i-1][j-1]==0:
            ans[i-1][j-1]=n

for row in ans:
    print(*row) 
0