結果

問題 No.1587 012 Matrix
ユーザー koba-e964koba-e964
提出日時 2021-10-06 10:57:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 262 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 78,648 KB
最終ジャッジ日時 2024-07-23 02:44:32
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,492 KB
testcase_01 AC 38 ms
53,348 KB
testcase_02 AC 37 ms
52,344 KB
testcase_03 AC 39 ms
52,484 KB
testcase_04 AC 38 ms
52,884 KB
testcase_05 AC 39 ms
52,616 KB
testcase_06 AC 44 ms
53,384 KB
testcase_07 AC 40 ms
53,232 KB
testcase_08 AC 49 ms
61,632 KB
testcase_09 AC 63 ms
68,372 KB
testcase_10 AC 67 ms
70,532 KB
testcase_11 AC 68 ms
72,220 KB
testcase_12 AC 71 ms
74,436 KB
testcase_13 AC 78 ms
77,196 KB
testcase_14 AC 83 ms
76,852 KB
testcase_15 AC 84 ms
77,780 KB
testcase_16 AC 89 ms
78,204 KB
testcase_17 AC 90 ms
78,620 KB
testcase_18 AC 94 ms
78,512 KB
testcase_19 AC 96 ms
78,328 KB
testcase_20 AC 95 ms
78,200 KB
testcase_21 AC 94 ms
78,648 KB
testcase_22 AC 38 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

n = int(input())

for i in range(n):
    for j in range(n):
        val = 0
        if j >= i:
            if i < n // 2 and i == j:
                val = 1
            else:
                val = 2
        print(val, end='')
    print()
0