結果

問題 No.1587 012 Matrix
ユーザー NoneNone
提出日時 2021-09-30 12:29:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-07-17 15:57:47
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
52,200 KB
testcase_08 AC 48 ms
58,824 KB
testcase_09 AC 46 ms
60,032 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 AC 47 ms
60,928 KB
testcase_12 AC 47 ms
61,952 KB
testcase_13 AC 52 ms
64,384 KB
testcase_14 AC 51 ms
65,792 KB
testcase_15 AC 53 ms
67,968 KB
testcase_16 AC 56 ms
70,144 KB
testcase_17 AC 57 ms
71,680 KB
testcase_18 AC 59 ms
72,832 KB
testcase_19 AC 60 ms
73,344 KB
testcase_20 AC 59 ms
73,984 KB
testcase_21 AC 60 ms
73,984 KB
testcase_22 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
mat=[[0]*N for _ in range(N)]
for h in range(N):
    for w in range(N):
        if h+w>=N:
            mat[h][w]=2
        if h+w==N-1 and h>=N//2:
            mat[h][w]=1
for array in mat:
    print("".join(map(str,array)))
0