結果

問題 No.1169 Row and Column and Diagonal
ユーザー yansi819yansi819
提出日時 2024-05-07 18:42:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 78,128 KB
最終ジャッジ日時 2024-11-30 13:40:17
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,188 KB
testcase_01 AC 32 ms
52,620 KB
testcase_02 AC 32 ms
53,032 KB
testcase_03 AC 34 ms
53,076 KB
testcase_04 AC 32 ms
53,160 KB
testcase_05 AC 33 ms
52,376 KB
testcase_06 AC 55 ms
67,236 KB
testcase_07 AC 53 ms
74,408 KB
testcase_08 AC 58 ms
76,876 KB
testcase_09 AC 63 ms
77,200 KB
testcase_10 AC 70 ms
77,804 KB
testcase_11 AC 75 ms
78,056 KB
testcase_12 AC 74 ms
78,128 KB
testcase_13 AC 72 ms
78,120 KB
testcase_14 AC 80 ms
78,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

a = [[0] * (N + 1) for i in range(N + 1)]

for i in range(1, N + 1):
    for j in range(1, N + 1):
        a[i][j] = N if (2 * i - j) % N == 0 else (2 * i - j) % N

for i in range(1, N + 1):
    print(*a[i][1:])
0