結果

問題 No.1456 Range Xor
ユーザー MZKiMZKi
提出日時 2021-03-31 21:43:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 168,044 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-05-09 06:27:07
合計ジャッジ時間 8,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 189 ms
16,640 KB
testcase_04 AC 190 ms
16,384 KB
testcase_05 AC 179 ms
16,512 KB
testcase_06 AC 173 ms
16,384 KB
testcase_07 AC 175 ms
16,384 KB
testcase_08 AC 175 ms
16,512 KB
testcase_09 AC 181 ms
16,384 KB
testcase_10 AC 174 ms
16,384 KB
testcase_11 AC 21 ms
5,632 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 39 ms
7,424 KB
testcase_14 AC 39 ms
7,404 KB
testcase_15 AC 137 ms
14,208 KB
testcase_16 AC 127 ms
13,184 KB
testcase_17 AC 59 ms
8,828 KB
testcase_18 AC 38 ms
7,120 KB
testcase_19 AC 100 ms
11,392 KB
testcase_20 AC 125 ms
13,184 KB
testcase_21 AC 90 ms
11,136 KB
testcase_22 AC 97 ms
11,392 KB
testcase_23 AC 43 ms
7,776 KB
testcase_24 AC 17 ms
5,376 KB
testcase_25 AC 33 ms
6,956 KB
testcase_26 AC 64 ms
9,344 KB
testcase_27 AC 111 ms
12,288 KB
testcase_28 AC 28 ms
6,528 KB
testcase_29 AC 148 ms
14,848 KB
testcase_30 AC 165 ms
15,616 KB
testcase_31 AC 26 ms
6,236 KB
testcase_32 AC 21 ms
5,760 KB
testcase_33 AC 51 ms
8,320 KB
testcase_34 AC 159 ms
15,488 KB
testcase_35 AC 69 ms
9,728 KB
testcase_36 AC 168 ms
16,256 KB
testcase_37 AC 143 ms
14,336 KB
testcase_38 AC 18 ms
5,376 KB
testcase_39 AC 112 ms
12,800 KB
testcase_40 AC 114 ms
12,416 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 13 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}}
template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}}
#define ll long long
#define double long double
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
#define mod (ll)(1e9+7)
#define inf (ll)(3e18+7)
#define eps (double)(1e-9)
#define pi (double) acos(-1)
#define P pair<int,int>
#define PiP pair<int,pair<int,int>>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
using namespace std;

int main() {
    int n, k;
    cin >> n >> k;
    vector<ll> a(n);
    rep(i, n)cin >> a[i];
    map<ll, ll> mp;
    bool ok = false;
    ll sum = 0;
    mp[0]++;
    rep(i, n){
        sum ^= a[i];
        mp[sum]++;
        if(mp[sum^k])ok = true;
    }
    cout << (ok ? "Yes" : "No") << endl;
}
0