結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-03 19:50:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-10-13 10:49:20
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 45 ms
57,856 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 42 ms
57,600 KB
testcase_05 AC 42 ms
57,344 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 43 ms
57,728 KB
testcase_08 AC 130 ms
87,296 KB
testcase_09 AC 67 ms
66,560 KB
testcase_10 AC 109 ms
80,768 KB
testcase_11 AC 92 ms
75,264 KB
testcase_12 AC 143 ms
90,752 KB
testcase_13 AC 149 ms
91,008 KB
testcase_14 AC 106 ms
79,872 KB
testcase_15 AC 154 ms
93,056 KB
testcase_16 AC 137 ms
89,344 KB
testcase_17 AC 145 ms
90,880 KB
testcase_18 AC 44 ms
58,368 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 90 ms
82,688 KB
testcase_21 AC 159 ms
93,184 KB
testcase_22 AC 159 ms
93,184 KB
testcase_23 AC 46 ms
58,368 KB
testcase_24 AC 43 ms
57,856 KB
testcase_25 AC 44 ms
58,624 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 42 ms
58,112 KB
testcase_28 AC 115 ms
82,944 KB
testcase_29 AC 142 ms
91,008 KB
testcase_30 AC 133 ms
88,704 KB
testcase_31 AC 119 ms
85,376 KB
testcase_32 AC 148 ms
89,600 KB
testcase_33 AC 157 ms
92,800 KB
testcase_34 AC 157 ms
92,800 KB
testcase_35 AC 156 ms
93,056 KB
testcase_36 AC 155 ms
93,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = 61
bit = [0]*M
ct = 0
for a in A:
    for i in range(M-1, -1, -1):
        if (a >> i) & 1:
            a ^= bit[i]
    if a == 0:
        continue
    ct += 1
    l = a.bit_length()-1
    bit[l] = a
    for i in range(l+1, M):
        if (bit[i] >> l) & 1:
            bit[i] ^= a

print(pow(2, ct))
0