結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-17 14:50:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-29 01:45:31
合計ジャッジ時間 1,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 34 ms
11,136 KB
testcase_11 AC 35 ms
11,392 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 34 ms
11,392 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 32 ms
11,264 KB
testcase_19 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(N, A):
    A = list(set(A))
    index = 1 << 61
    for rank in range(61):
        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