結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 14:55:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,689 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,840 KB
最終ジャッジ日時 2024-07-04 11:30:56
合計ジャッジ時間 44,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 1,780 ms
19,656 KB
testcase_09 AC 357 ms
12,944 KB
testcase_10 AC 1,363 ms
18,008 KB
testcase_11 AC 953 ms
17,424 KB
testcase_12 AC 2,177 ms
24,116 KB
testcase_13 AC 2,410 ms
24,664 KB
testcase_14 AC 1,281 ms
18,804 KB
testcase_15 AC 2,604 ms
25,316 KB
testcase_16 AC 2,122 ms
24,196 KB
testcase_17 AC 2,319 ms
24,536 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 54 ms
12,780 KB
testcase_21 AC 2,670 ms
25,840 KB
testcase_22 AC 2,689 ms
25,700 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 1,465 ms
19,144 KB
testcase_29 AC 2,121 ms
24,528 KB
testcase_30 AC 1,865 ms
20,012 KB
testcase_31 AC 1,481 ms
19,244 KB
testcase_32 AC 1,998 ms
24,176 KB
testcase_33 AC 2,562 ms
25,476 KB
testcase_34 AC 2,560 ms
25,376 KB
testcase_35 AC 2,643 ms
25,472 KB
testcase_36 AC 2,625 ms
25,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(N, A):
    digits = len(bin(max(A))) - 2
    index = 1 << digits
    for rank in range(digits + 1):
        A = list(set(A))
        A.sort(reverse=True)
        if rank >= len(A):
            break
        Ar = A[rank]
        if Ar == 0:
            break
        while index and not Ar & index:
            index >>= 1
        i = rank + 1
        while i < len(A) and A[i] & index:
            A[i] ^= Ar
            i += 1
    return 1 << rank

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