結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー ああいいああいい
提出日時 2021-12-24 16:35:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,630 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,912 KB
最終ジャッジ日時 2024-09-19 15:14:19
合計ジャッジ時間 30,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 1,100 ms
18,568 KB
testcase_09 AC 262 ms
12,060 KB
testcase_10 AC 886 ms
16,536 KB
testcase_11 AC 622 ms
14,716 KB
testcase_12 AC 1,360 ms
19,780 KB
testcase_13 AC 1,454 ms
20,504 KB
testcase_14 AC 811 ms
16,144 KB
testcase_15 AC 1,570 ms
21,296 KB
testcase_16 AC 1,291 ms
19,508 KB
testcase_17 AC 1,441 ms
20,348 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 975 ms
12,616 KB
testcase_21 AC 1,595 ms
21,912 KB
testcase_22 AC 1,630 ms
21,652 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 AC 26 ms
10,880 KB
testcase_26 AC 26 ms
10,496 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 997 ms
17,312 KB
testcase_29 AC 1,428 ms
20,096 KB
testcase_30 AC 1,187 ms
19,008 KB
testcase_31 AC 1,039 ms
18,028 KB
testcase_32 AC 1,261 ms
19,576 KB
testcase_33 AC 1,571 ms
21,448 KB
testcase_34 AC 1,521 ms
21,244 KB
testcase_35 AC 1,577 ms
21,688 KB
testcase_36 AC 1,584 ms
21,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

ans = 0
for j in range(61):
    mask = 1 << j
    m = -1
    for i in range(N):
        if A[i] & mask:
            if m == -1:
                m = A[i]
                A[i] = 0
                ans += 1
            else:
                A[i] ^= m
print(2 ** ans)
0