結果

問題 No.1587 012 Matrix
ユーザー 👑 rin204rin204
提出日時 2022-01-26 17:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-06-02 11:43:10
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 32 ms
52,352 KB
testcase_04 AC 32 ms
52,224 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 34 ms
52,736 KB
testcase_08 AC 42 ms
62,208 KB
testcase_09 AC 43 ms
63,360 KB
testcase_10 AC 46 ms
64,640 KB
testcase_11 AC 47 ms
67,072 KB
testcase_12 AC 51 ms
70,784 KB
testcase_13 AC 59 ms
77,768 KB
testcase_14 AC 63 ms
77,696 KB
testcase_15 AC 68 ms
78,340 KB
testcase_16 AC 72 ms
80,256 KB
testcase_17 AC 74 ms
80,256 KB
testcase_18 AC 75 ms
80,172 KB
testcase_19 AC 78 ms
80,280 KB
testcase_20 AC 82 ms
80,144 KB
testcase_21 AC 82 ms
80,512 KB
testcase_22 AC 34 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = [[0] * n for _ in range(n)]
for i in range(n):
    if i % 2 == 0:
        ans[i][i] = 1
    else:
        ans[i][i] = 2
    for j in range(i):
        ans[i][j] = 2
        
for row in ans:
    print(*row, sep="")
    
se = set()
for i in range(n):
    tot = 0
    for j in range(n):
        tot += ans[i][j]
    se.add(tot)
    
for j in range(n):
    tot = 0
    for i in range(n):
        tot += ans[i][j]
    se.add(tot)
    
assert len(se) == 2 * n
0