結果

問題 No.1587 012 Matrix
ユーザー convexineqconvexineq
提出日時 2021-07-09 04:50:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 241 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,972 KB
最終ジャッジ日時 2024-07-01 13:52:20
合計ジャッジ時間 2,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,428 KB
testcase_01 AC 38 ms
53,820 KB
testcase_02 AC 38 ms
52,496 KB
testcase_03 AC 38 ms
52,932 KB
testcase_04 AC 38 ms
52,332 KB
testcase_05 AC 39 ms
52,568 KB
testcase_06 AC 39 ms
52,972 KB
testcase_07 AC 38 ms
53,032 KB
testcase_08 AC 44 ms
59,316 KB
testcase_09 AC 51 ms
63,128 KB
testcase_10 AC 50 ms
62,356 KB
testcase_11 AC 51 ms
63,252 KB
testcase_12 AC 52 ms
63,908 KB
testcase_13 AC 55 ms
67,160 KB
testcase_14 AC 56 ms
67,784 KB
testcase_15 AC 59 ms
69,808 KB
testcase_16 AC 60 ms
71,572 KB
testcase_17 AC 61 ms
73,528 KB
testcase_18 AC 62 ms
73,728 KB
testcase_19 AC 63 ms
74,148 KB
testcase_20 AC 68 ms
77,912 KB
testcase_21 AC 69 ms
77,972 KB
testcase_22 AC 38 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = [[0]*n for _ in range(n)]
for i in range(n):
    for j in range(n):
        if i < n//2 and i+j == n-1:
            r[i][j] = 1
        elif i+j >= n:
            r[i][j] = 2

for ri in r:
    print("".join(map(str,ri)))
0