結果

問題 No.1456 Range Xor
ユーザー 👑 CleyLCleyL
提出日時 2022-05-07 11:02:24
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 1,328 ms
コンパイル使用メモリ 74,980 KB
最終ジャッジ日時 2025-01-29 04:39:31
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
using namespace std;
int main(){
  set<int> A;
  int n;cin>>n;
  int k;cin>>k;
  int nw = 0;
  A.insert(nw);
  for(int i = 0; n > i; i++){
    int x;cin>>x;
    nw ^= x;
    A.insert(nw);
  }
  for(auto x: A){
    if(A.count(x^k)){
      cout << "Yes" << endl;
      return 0;
    }
  }
  cout << "No" << endl;
}
0