結果

問題 No.1587 012 Matrix
ユーザー shinichishinichi
提出日時 2021-07-08 22:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-01 13:03:48
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 46 ms
59,776 KB
testcase_09 AC 46 ms
60,288 KB
testcase_10 AC 46 ms
61,056 KB
testcase_11 AC 48 ms
62,336 KB
testcase_12 AC 50 ms
64,000 KB
testcase_13 AC 54 ms
68,352 KB
testcase_14 AC 56 ms
71,680 KB
testcase_15 AC 66 ms
77,208 KB
testcase_16 AC 66 ms
77,520 KB
testcase_17 AC 69 ms
77,948 KB
testcase_18 AC 70 ms
77,680 KB
testcase_19 AC 72 ms
78,008 KB
testcase_20 AC 70 ms
78,124 KB
testcase_21 AC 71 ms
78,720 KB
testcase_22 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
result = [[None]*n for _ in range(n)]
ans = []
array = set(range(1, 2*n+1)) - set([2+4*n for n in range(2*n)]) - set([3+4*n for n in range(2*n)])
array = sorted(list(array))
j = 0
for line in result:
    now = array[j]
    j += 1
    tmp = now
    alt = []
    for i in range(n):
        if tmp >= 2:
            alt.append(2)
            tmp -= 2
        elif tmp == 1:
            alt.append(1)
            tmp -= 1
        else:
            alt.append(0)
    ans.append(''.join(map(str, reversed(alt))))


print(*ans, sep='\n')
0