結果

問題 No.1169 Row and Column and Diagonal
ユーザー irumo8202irumo8202
提出日時 2022-01-29 23:26:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-06-10 22:38:13
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,700 KB
testcase_01 AC 36 ms
52,816 KB
testcase_02 AC 40 ms
52,392 KB
testcase_03 AC 41 ms
52,492 KB
testcase_04 AC 40 ms
52,492 KB
testcase_05 AC 36 ms
52,144 KB
testcase_06 AC 58 ms
66,692 KB
testcase_07 AC 60 ms
73,248 KB
testcase_08 AC 67 ms
76,296 KB
testcase_09 AC 71 ms
76,200 KB
testcase_10 AC 75 ms
75,988 KB
testcase_11 AC 75 ms
75,896 KB
testcase_12 AC 77 ms
75,844 KB
testcase_13 AC 77 ms
76,420 KB
testcase_14 AC 85 ms
76,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

for i in range(1, N + 1):
    for j in range(1, N + 1):
        v = (2 * i - j) % N
        print(v if v else N, end=" ")
    print()
0