結果

問題 No.2212 One XOR Matrix
ユーザー KudeKude
提出日時 2023-02-10 22:11:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 85,100 KB
最終ジャッジ日時 2024-07-07 16:24:46
合計ジャッジ時間 2,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,072 KB
testcase_01 AC 31 ms
52,524 KB
testcase_02 AC 34 ms
52,276 KB
testcase_03 AC 36 ms
52,700 KB
testcase_04 AC 36 ms
59,140 KB
testcase_05 AC 44 ms
64,772 KB
testcase_06 AC 50 ms
67,700 KB
testcase_07 AC 61 ms
76,304 KB
testcase_08 AC 84 ms
78,152 KB
testcase_09 AC 139 ms
85,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(-1)
    exit()
Ak = [[7, 14, 0, 8],
      [4, 12, 2, 11],
      [15, 9, 6, 1],
      [13, 10, 5, 3]]
for k in range(2, n):
    s = len(Ak)
    nA = [[0] * (2 * s) for _ in range(2 * s)]
    b1 = s * s
    b2 = b1 * 2
    x = 0
    for i in range(s):
        for j in range(s):
            nA[i][j] = Ak[i][j]
            nA[i][j + s] = x | b1
            nA[s + i][j] = x | b2
            nA[s + i][s + j] = Ak[i][j] | b1 | b2
            x += 1
    Ak = nA
for a in Ak:
    print(*a)
0