結果

問題 No.1456 Range Xor
ユーザー convexineqconvexineq
提出日時 2021-04-01 11:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 100,436 KB
最終ジャッジ日時 2024-12-17 15:06:17
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
*a, = map(int,input().split())
for i in range(1,n):
    a[i] ^= a[i-1]
d = {0}
for ai in a:
    if ai^k in d:
        print("Yes")
        exit()
    d.add(ai)
print("No")
0