結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 694 ms
20,772 KB
testcase_09 AC 143 ms
12,984 KB
testcase_10 AC 504 ms
19,076 KB
testcase_11 AC 377 ms
17,476 KB
testcase_12 AC 814 ms
25,952 KB
testcase_13 AC 854 ms
26,420 KB
testcase_14 AC 475 ms
18,792 KB
testcase_15 AC 973 ms
26,860 KB
testcase_16 AC 781 ms
26,156 KB
testcase_17 AC 1,000 ms
26,280 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 49 ms
12,016 KB
testcase_21 AC 989 ms
27,360 KB
testcase_22 AC 987 ms
27,252 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 969 ms
27,028 KB
testcase_34 AC 989 ms
26,924 KB
testcase_35 AC 1,031 ms
26,996 KB
testcase_36 AC 1,003 ms
27,180 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):
        Ar = max(A)
        if Ar == 0:
            break
        msb = len(bin(Ar)) - 2
        index = 1 << msb
        for i in range(len(A)):
            if A[i] & index:
                A[i] ^= Ar
    if max(A):
        rank += 1
    return 1 << rank

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