結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 15:20:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,275 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,372 KB
最終ジャッジ日時 2024-07-04 11:32:16
合計ジャッジ時間 21,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 777 ms
20,644 KB
testcase_09 AC 171 ms
12,976 KB
testcase_10 AC 615 ms
18,944 KB
testcase_11 AC 411 ms
17,620 KB
testcase_12 AC 919 ms
26,048 KB
testcase_13 AC 1,053 ms
26,296 KB
testcase_14 AC 563 ms
18,732 KB
testcase_15 AC 1,239 ms
27,176 KB
testcase_16 AC 915 ms
25,892 KB
testcase_17 AC 987 ms
26,136 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 50 ms
12,012 KB
testcase_21 AC 1,260 ms
27,052 KB
testcase_22 AC 1,275 ms
27,052 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 661 ms
20,148 KB
testcase_29 AC 967 ms
26,144 KB
testcase_30 AC 786 ms
21,368 KB
testcase_31 AC 685 ms
20,112 KB
testcase_32 AC 906 ms
25,960 KB
testcase_33 AC 1,205 ms
27,372 KB
testcase_34 AC 1,219 ms
26,904 KB
testcase_35 AC 1,158 ms
27,184 KB
testcase_36 AC 1,223 ms
27,116 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):
        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
    if A[rank]:
        rank += 1
    return 1 << rank

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