結果

問題 No.2672 Subset Xor Sum
ユーザー KudeKude
提出日時 2024-03-15 21:27:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 111,744 KB
最終ジャッジ日時 2024-09-30 04:13:12
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 66
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
x = 0
b = []
found = False
for i, a in enumerate(map(int, input().split())):
    x ^= a
    if i == 0:
        continue
    for bi in b:
        a = min(a, a ^ bi)
    if a:
        b.append(a)
    else:
        found = True
ans = x == 0 and found
print('Yes' if ans else 'No')
0