結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 15:43:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 102,992 KB
最終ジャッジ日時 2024-07-04 11:33:02
合計ジャッジ時間 4,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,872 KB
testcase_01 AC 35 ms
52,732 KB
testcase_02 AC 38 ms
57,476 KB
testcase_03 AC 38 ms
52,932 KB
testcase_04 AC 35 ms
52,744 KB
testcase_05 AC 35 ms
52,828 KB
testcase_06 AC 35 ms
53,180 KB
testcase_07 AC 35 ms
53,348 KB
testcase_08 AC 111 ms
91,196 KB
testcase_09 AC 56 ms
66,712 KB
testcase_10 AC 96 ms
84,008 KB
testcase_11 AC 83 ms
77,596 KB
testcase_12 AC 133 ms
96,476 KB
testcase_13 AC 140 ms
97,428 KB
testcase_14 AC 95 ms
83,084 KB
testcase_15 AC 142 ms
101,488 KB
testcase_16 AC 123 ms
94,508 KB
testcase_17 AC 136 ms
97,860 KB
testcase_18 AC 40 ms
58,712 KB
testcase_19 AC 36 ms
53,004 KB
testcase_20 AC 49 ms
71,372 KB
testcase_21 AC 151 ms
102,564 KB
testcase_22 AC 143 ms
102,992 KB
testcase_23 AC 39 ms
58,172 KB
testcase_24 AC 36 ms
52,868 KB
testcase_25 AC 39 ms
59,180 KB
testcase_26 AC 36 ms
53,192 KB
testcase_27 AC 37 ms
52,612 KB
testcase_28 AC 108 ms
86,460 KB
testcase_29 AC 128 ms
97,828 KB
testcase_30 AC 123 ms
92,876 KB
testcase_31 AC 109 ms
89,588 KB
testcase_32 AC 121 ms
95,876 KB
testcase_33 AC 150 ms
101,140 KB
testcase_34 AC 140 ms
100,812 KB
testcase_35 AC 147 ms
101,624 KB
testcase_36 AC 147 ms
101,580 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
    N = len(A)
    rank_upper_bound = min(digits, N)
    for rank in range(1, rank_upper_bound + 1):
        Ar = max(A)
        if Ar == 0:
            rank -= 1
            break
        index = 1 << (len(bin(Ar)) - 3)
        for i in range(N):
            if A[i] & index:
                A[i] ^= Ar
    return 1 << rank

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