結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 15:11:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 582 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,268 KB
最終ジャッジ日時 2024-07-04 11:31:51
合計ジャッジ時間 19,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 RE -
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 757 ms
20,648 KB
testcase_09 AC 169 ms
12,860 KB
testcase_10 AC 586 ms
19,072 KB
testcase_11 AC 410 ms
17,480 KB
testcase_12 AC 934 ms
25,972 KB
testcase_13 AC 1,015 ms
26,576 KB
testcase_14 AC 553 ms
18,740 KB
testcase_15 AC 1,084 ms
27,044 KB
testcase_16 AC 852 ms
26,048 KB
testcase_17 AC 934 ms
26,308 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 1,121 ms
27,260 KB
testcase_22 AC 1,114 ms
27,268 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 663 ms
20,156 KB
testcase_29 AC 921 ms
26,300 KB
testcase_30 AC 763 ms
21,208 KB
testcase_31 AC 674 ms
20,240 KB
testcase_32 AC 828 ms
26,152 KB
testcase_33 AC 1,091 ms
27,088 KB
testcase_34 AC 1,075 ms
26,972 KB
testcase_35 AC 1,141 ms
27,120 KB
testcase_36 AC 1,078 ms
26,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    A = list(set(map(int, input().split())))
    return A

def solve(A):
    digits = len(bin(max(A))) - 2
    index = 1 << digits
    rank_upper_bound = min(digits, len(A))
    for rank in range(rank_upper_bound + 1):
        A.sort(reverse=True)
        Ar = A[rank]
        if Ar == 0:
            break
        while index and not Ar & index:
            index >>= 1
        for i in range(rank + 1, len(A)):
            if not A[i] & index:
                break
            A[i] ^= Ar
    return 1 << rank

A = read_data()
print(solve(A))
0