結果

問題 No.1456 Range Xor
ユーザー boutarouboutarou
提出日時 2021-03-31 22:07:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 202,280 KB
最終ジャッジ日時 2025-01-20 03:36:46
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < int(n); i++)
using ll = long long;
using P = pair<int, int>;

int main() {
    cin.tie(0);
    ios_base::sync_with_stdio(false);
    
    int n, k; cin >> n >> k;
    vector<int> a(n);
    rep(i, n) cin >> a[i];
    vector<int> sum(n + 1, 0);
    rep(i, n) sum[i + 1] = sum[i] ^ a[i];
    map<int, int> mp;
    rep(i, n + 1) mp[sum[i]] = 1;
    rep(i, n + 1) {
        if (mp[sum[i] ^ k]) {
            cout << "Yes" << endl;
            return 0;
        }
    }
    cout << "No" << endl;
    return 0;
}
0