結果

問題 No.1587 012 Matrix
ユーザー ayaoniayaoni
提出日時 2021-07-08 22:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 1,000 ms
コード長 809 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,412 KB
最終ジャッジ日時 2024-07-01 12:54:45
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,356 KB
testcase_01 AC 38 ms
53,224 KB
testcase_02 AC 39 ms
53,980 KB
testcase_03 AC 39 ms
52,532 KB
testcase_04 AC 43 ms
54,344 KB
testcase_05 AC 39 ms
53,076 KB
testcase_06 AC 39 ms
53,856 KB
testcase_07 AC 39 ms
53,156 KB
testcase_08 AC 42 ms
58,580 KB
testcase_09 AC 43 ms
59,684 KB
testcase_10 AC 44 ms
59,452 KB
testcase_11 AC 47 ms
62,288 KB
testcase_12 AC 50 ms
63,200 KB
testcase_13 AC 50 ms
64,356 KB
testcase_14 AC 53 ms
66,628 KB
testcase_15 AC 55 ms
68,912 KB
testcase_16 AC 56 ms
70,592 KB
testcase_17 AC 58 ms
73,228 KB
testcase_18 AC 59 ms
73,176 KB
testcase_19 AC 60 ms
72,932 KB
testcase_20 AC 61 ms
74,112 KB
testcase_21 AC 68 ms
77,412 KB
testcase_22 AC 39 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
M = N//2

ANS = [[0]*N for _ in range(N)]
for i in range(M):
    ANS[2*i][2*i+1] = 1
    ANS[2*i+1][2*i] = 2
    ANS[2*i+1][2*i+1] = 2
    for j in range(i):
        ANS[2*i][2*j] = 2
        ANS[2*i+1][2*j] = 2
        ANS[2*i][2*j+1] = 2
        ANS[2*i+1][2*j+1] = 2

for i in range(N):
    ans = ''.join([str(a) for a in ANS[i]])
    print(ans)
0