結果
問題 | No.1456 Range Xor |
ユーザー | Ichimiya |
提出日時 | 2021-06-01 00:03:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 496 bytes |
コンパイル時間 | 1,999 ms |
コンパイル使用メモリ | 173,644 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-11-09 00:02:53 |
合計ジャッジ時間 | 6,208 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 46 |
ソースコード
#include <bits/stdc++.h> #define NIL (-1) #define ll long long using namespace std; const int64_t MOD = 1e9 + 7; const int INF = INT_MAX; const double PI = acos(-1.0); int main() { int N, K; cin >> N >> K; vector<int> A(N); set<int> s; s.insert(0); bool b = 0; for (int i = 0; i < N; i++) { int n; cin >> n; if (!i) A[i] = n; else A[i] = n ^ A[i - 1]; s.insert(A[i]); //cout << A[i] << endl; if (s.find(A[i] ^ K) != s.end()) b = 1; } cout << (b ? "Yes" : "No") << endl; }