結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 872 ms
20,876 KB
testcase_09 AC 178 ms
12,968 KB
testcase_10 AC 619 ms
19,060 KB
testcase_11 AC 456 ms
17,644 KB
testcase_12 AC 997 ms
26,224 KB
testcase_13 AC 1,096 ms
26,360 KB
testcase_14 AC 611 ms
18,720 KB
testcase_15 AC 1,191 ms
27,328 KB
testcase_16 AC 978 ms
26,144 KB
testcase_17 AC 1,055 ms
26,284 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 50 ms
12,004 KB
testcase_21 AC 1,231 ms
27,300 KB
testcase_22 AC 1,257 ms
27,292 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 686 ms
20,268 KB
testcase_29 AC 990 ms
26,356 KB
testcase_30 AC 953 ms
21,368 KB
testcase_31 AC 728 ms
20,232 KB
testcase_32 AC 926 ms
26,236 KB
testcase_33 AC 1,166 ms
28,272 KB
testcase_34 AC 1,236 ms
26,976 KB
testcase_35 AC 1,329 ms
27,164 KB
testcase_36 AC 1,326 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
    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