結果

問題 No.1169 Row and Column and Diagonal
ユーザー syunsukesyunsuke
提出日時 2020-09-13 20:49:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 78,332 KB
最終ジャッジ日時 2024-06-13 04:30:09
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,000 KB
testcase_01 AC 37 ms
53,168 KB
testcase_02 AC 35 ms
52,876 KB
testcase_03 AC 37 ms
52,552 KB
testcase_04 AC 36 ms
53,252 KB
testcase_05 AC 37 ms
52,760 KB
testcase_06 AC 55 ms
67,604 KB
testcase_07 AC 61 ms
76,288 KB
testcase_08 AC 65 ms
76,532 KB
testcase_09 AC 72 ms
77,196 KB
testcase_10 AC 77 ms
78,016 KB
testcase_11 AC 80 ms
77,796 KB
testcase_12 AC 81 ms
78,304 KB
testcase_13 AC 82 ms
78,232 KB
testcase_14 AC 81 ms
78,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

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