結果

問題 No.1587 012 Matrix
ユーザー KudeKude
提出日時 2021-07-08 22:59:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 312 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 74,496 KB
最終ジャッジ日時 2024-07-01 13:04:54
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 46 ms
57,856 KB
testcase_09 AC 49 ms
59,008 KB
testcase_10 AC 50 ms
60,032 KB
testcase_11 AC 51 ms
61,312 KB
testcase_12 AC 54 ms
62,208 KB
testcase_13 AC 56 ms
64,000 KB
testcase_14 AC 58 ms
65,664 KB
testcase_15 AC 63 ms
67,328 KB
testcase_16 AC 62 ms
69,632 KB
testcase_17 AC 62 ms
71,916 KB
testcase_18 AC 64 ms
72,960 KB
testcase_19 AC 65 ms
73,728 KB
testcase_20 AC 65 ms
74,240 KB
testcase_21 AC 66 ms
74,496 KB
testcase_22 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
d = [[0] * n for _ in range(n)]
for i in range(n // 2):
    for j in range(i):
        d[i][j] += 1
        d[i + n // 2][j + n // 2] += 1
    for j in range(n):
        d[i + n // 2][j] += 1
    for j in range(n // 2):
        d[i + n // 2][j] += 1
for di in d:
    print(''.join(map(str, di)))
0