結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 15:03:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 584 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 109,492 KB
最終ジャッジ日時 2024-07-04 11:24:33
合計ジャッジ時間 6,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,372 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 37 ms
52,072 KB
testcase_05 AC 38 ms
51,696 KB
testcase_06 RE -
testcase_07 AC 36 ms
52,132 KB
testcase_08 AC 203 ms
104,592 KB
testcase_09 AC 69 ms
71,424 KB
testcase_10 AC 161 ms
99,884 KB
testcase_11 AC 123 ms
91,260 KB
testcase_12 AC 224 ms
109,392 KB
testcase_13 AC 242 ms
108,180 KB
testcase_14 AC 167 ms
99,160 KB
testcase_15 AC 255 ms
108,596 KB
testcase_16 AC 212 ms
107,576 KB
testcase_17 AC 225 ms
109,492 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 265 ms
106,972 KB
testcase_22 AC 263 ms
106,944 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 169 ms
102,260 KB
testcase_29 AC 229 ms
105,932 KB
testcase_30 AC 200 ms
107,440 KB
testcase_31 AC 184 ms
104,172 KB
testcase_32 AC 215 ms
108,664 KB
testcase_33 AC 262 ms
108,472 KB
testcase_34 AC 254 ms
108,276 KB
testcase_35 AC 264 ms
106,812 KB
testcase_36 AC 262 ms
107,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(N, A):
    digits = len(bin(max(A))) - 2
    index = 1 << digits
    rank_upper_bound = min(digits, N)
    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, N):
            if not A[i] & index:
                break
            A[i] ^= Ar
    return 1 << rank

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