結果

問題 No.2212 One XOR Matrix
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-26 03:31:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-09-28 07:26:51
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 44 ms
58,368 KB
testcase_05 AC 46 ms
59,264 KB
testcase_06 AC 48 ms
60,416 KB
testcase_07 AC 56 ms
64,512 KB
testcase_08 AC 77 ms
77,824 KB
testcase_09 AC 122 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2212

def main():
    N = int(input())
    if N == 1:
        print(-1)
        return


    matrix = [[0] * (2 ** N) for _ in range(2 ** N)]

    for i in range(2 ** N):
        for j in range(2 ** N):
            x = (i << N) + j
            matrix[i][j] = x

    for i in range(0, 2 ** N, 2):
        j = i
        tmp = matrix[i][j + 1]
        matrix[i][j + 1] = matrix[i][j]
        matrix[i][j] = tmp

        if j % 4 == 0:
            tmp = matrix[i][j]
            matrix[i][j] = matrix[i + 1][j]
            matrix[i + 1][j] = tmp

            tmp = matrix[i][j + 2]
            matrix[i][j + 2] = matrix[i + 1][j + 2]
            matrix[i + 1][j + 2] = tmp
        else:
            tmp = matrix[i][j]
            matrix[i][j] = matrix[i + 1][j]
            matrix[i + 1][j] = tmp

            tmp = matrix[i][j - 2]
            matrix[i][j - 2] = matrix[i + 1][j - 2]
            matrix[i + 1][j - 2] = tmp

    for i in range(2 ** N):
        print(" ".join(map(str, matrix[i])))



if __name__ == "__main__":
    main()
0