結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー lloyzlloyz
提出日時 2023-10-08 17:55:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 140,728 KB
最終ジャッジ日時 2024-07-26 18:10:12
合計ジャッジ時間 5,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,400 KB
testcase_01 AC 40 ms
53,940 KB
testcase_02 AC 39 ms
58,868 KB
testcase_03 AC 39 ms
53,344 KB
testcase_04 AC 38 ms
52,836 KB
testcase_05 AC 38 ms
52,804 KB
testcase_06 AC 37 ms
52,668 KB
testcase_07 AC 42 ms
58,712 KB
testcase_08 AC 133 ms
116,508 KB
testcase_09 AC 59 ms
72,364 KB
testcase_10 AC 114 ms
103,488 KB
testcase_11 AC 95 ms
91,200 KB
testcase_12 AC 154 ms
126,920 KB
testcase_13 AC 160 ms
131,408 KB
testcase_14 AC 110 ms
102,940 KB
testcase_15 AC 167 ms
137,392 KB
testcase_16 AC 148 ms
125,196 KB
testcase_17 AC 161 ms
129,824 KB
testcase_18 AC 42 ms
59,760 KB
testcase_19 AC 38 ms
53,192 KB
testcase_20 AC 107 ms
128,420 KB
testcase_21 AC 181 ms
140,188 KB
testcase_22 AC 175 ms
140,728 KB
testcase_23 AC 42 ms
59,920 KB
testcase_24 AC 37 ms
53,556 KB
testcase_25 AC 41 ms
58,312 KB
testcase_26 AC 37 ms
52,528 KB
testcase_27 AC 38 ms
52,800 KB
testcase_28 AC 127 ms
112,288 KB
testcase_29 AC 158 ms
113,812 KB
testcase_30 AC 148 ms
109,500 KB
testcase_31 AC 135 ms
102,344 KB
testcase_32 AC 150 ms
104,880 KB
testcase_33 AC 174 ms
138,148 KB
testcase_34 AC 165 ms
137,256 KB
testcase_35 AC 179 ms
140,484 KB
testcase_36 AC 180 ms
139,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gauss_jordan(A):
    # F2 上の Gauss Jordan の掃き出し法
    # 基底を取り出す
    # 引数を破壊的に変更する
    idx = 0
    for i in range(61, -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