結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー lloyzlloyz
提出日時 2023-10-08 17:53:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 659 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,032 KB
最終ジャッジ日時 2024-07-26 18:10:06
合計ジャッジ時間 21,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 745 ms
18,700 KB
testcase_09 AC 178 ms
12,332 KB
testcase_10 AC 574 ms
16,760 KB
testcase_11 AC 419 ms
15,180 KB
testcase_12 AC 868 ms
20,164 KB
testcase_13 AC 943 ms
20,884 KB
testcase_14 AC 543 ms
16,420 KB
testcase_15 AC 1,021 ms
21,560 KB
testcase_16 AC 843 ms
19,996 KB
testcase_17 AC 919 ms
20,488 KB
testcase_18 RE -
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 630 ms
12,672 KB
testcase_21 AC 1,041 ms
21,928 KB
testcase_22 AC 1,045 ms
21,924 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 632 ms
17,580 KB
testcase_29 AC 900 ms
20,236 KB
testcase_30 AC 789 ms
19,312 KB
testcase_31 AC 671 ms
18,048 KB
testcase_32 AC 841 ms
19,936 KB
testcase_33 AC 1,019 ms
21,800 KB
testcase_34 AC 1,016 ms
21,604 KB
testcase_35 AC 1,042 ms
21,868 KB
testcase_36 AC 1,035 ms
22,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gauss_jordan(A):
    # F2 上の Gauss Jordan の掃き出し法
    # 基底を取り出す
    # 引数を破壊的に変更する
    idx = 0
    for i in range(59, -1, -1):
        for j, a in enumerate(A[idx:], idx):
            if a>>i & 1:
                break
        else:
            continue
        A[idx], A[j] = A[j], A[idx]
        for j in range(len(A)):
            if j != idx and A[j]>>i & 1:
                A[j] ^= a
        idx += 1
    assert not any(A[idx:])
    del A[idx:]
import sys
input = sys.stdin.readline

n = int(input())
A = list(map(int, input().split()))
gauss_jordan(A)
print(pow(2, len(A)))
0