結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 14:55:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 260,340 KB
最終ジャッジ日時 2024-07-04 11:29:35
合計ジャッジ時間 12,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 39 ms
53,368 KB
testcase_02 AC 37 ms
52,532 KB
testcase_03 AC 37 ms
52,932 KB
testcase_04 AC 35 ms
52,296 KB
testcase_05 AC 36 ms
52,276 KB
testcase_06 AC 37 ms
52,304 KB
testcase_07 AC 37 ms
52,852 KB
testcase_08 AC 456 ms
258,316 KB
testcase_09 AC 115 ms
94,476 KB
testcase_10 AC 377 ms
239,932 KB
testcase_11 AC 257 ms
178,220 KB
testcase_12 AC 505 ms
259,240 KB
testcase_13 AC 525 ms
258,460 KB
testcase_14 AC 376 ms
245,328 KB
testcase_15 AC 552 ms
259,208 KB
testcase_16 AC 482 ms
258,560 KB
testcase_17 AC 515 ms
259,364 KB
testcase_18 AC 37 ms
52,596 KB
testcase_19 AC 36 ms
52,464 KB
testcase_20 AC 54 ms
78,156 KB
testcase_21 AC 579 ms
258,820 KB
testcase_22 AC 571 ms
260,340 KB
testcase_23 AC 36 ms
52,464 KB
testcase_24 AC 36 ms
52,656 KB
testcase_25 AC 37 ms
53,816 KB
testcase_26 AC 37 ms
53,328 KB
testcase_27 AC 36 ms
52,828 KB
testcase_28 AC 405 ms
258,504 KB
testcase_29 AC 503 ms
257,912 KB
testcase_30 AC 488 ms
258,628 KB
testcase_31 AC 422 ms
258,320 KB
testcase_32 AC 514 ms
259,536 KB
testcase_33 AC 564 ms
258,492 KB
testcase_34 AC 552 ms
259,004 KB
testcase_35 AC 569 ms
258,600 KB
testcase_36 AC 563 ms
258,796 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