結果

問題 No.2212 One XOR Matrix
ユーザー minimumminimum
提出日時 2023-02-10 22:49:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 85,064 KB
最終ジャッジ日時 2024-07-07 16:53:37
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,764 KB
testcase_02 AC 39 ms
52,816 KB
testcase_03 AC 41 ms
52,960 KB
testcase_04 AC 46 ms
59,004 KB
testcase_05 AC 63 ms
68,504 KB
testcase_06 AC 68 ms
72,452 KB
testcase_07 AC 82 ms
76,256 KB
testcase_08 AC 112 ms
78,884 KB
testcase_09 AC 207 ms
85,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    exit(print(-1))

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