結果

問題 No.2212 One XOR Matrix
ユーザー minimumminimum
提出日時 2023-02-10 22:56:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 85,768 KB
最終ジャッジ日時 2024-07-07 16:59:21
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,936 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 40 ms
59,256 KB
testcase_05 AC 51 ms
67,712 KB
testcase_06 AC 56 ms
72,576 KB
testcase_07 AC 69 ms
76,836 KB
testcase_08 AC 94 ms
78,720 KB
testcase_09 AC 166 ms
85,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    exit(print(-1))
if N == 2:
    print(7, 14, 0, 8)
    print(4, 12, 2, 11)
    print(15, 9, 6, 1)
    print(13, 10, 5, 3)
    exit()

A = [[0] * (1 << N) for _ in range(1 << N)]
for i in range(1 << (2 * N - 2)):
    r = i // (1 << (N - 1))
    c = i % (1 << (N - 1))
    A[r][c] = i
    A[(1 << N) - 1 - c][r] = i
    A[c][(1 << N) - 1 - r] = i
    A[r + (1 << (N - 1))][c + (1 << (N - 1))] = i

for i in range(1 << N):
    for j in range(1 << N):
        A[i][j] <<= 1
        if i < (1 << (N - 1)):
            A[i][j] += 1
        A[i][j] <<= 1

for i in range(1 << N):
    for j in range(1 << N):
        if i < (1 << (N - 1)) and j < (1 << (N - 1)):
            if i == 0:
                A[i][j] += 1
        elif i < (1 << (N - 1)) and j >= (1 << (N - 1)):
            if j != ((1 << N) - 1):
                A[i][j] += 1
        elif i >= (1 << (N - 1)) and j < (1 << (N - 1)):
            if j != 0:
                A[i][j] += 1
        else:
            if i == 1 << (N - 1):
                A[i][j] += 1

for a in A:
    print(*a)
0