結果

問題 No.184 たのしい排他的論理和(HARD)
コンテスト
ユーザー detteiuu
提出日時 2025-11-20 00:39:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 160 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 93,432 KB
最終ジャッジ日時 2025-11-20 00:39:41
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
A = list(map(int, input().split()))

B = []
for a in A:
    for b in B:
        a = min(a, a^b)
    if a:
        B.append(a)

print(1<<len(B))
0