結果

問題 No.1456 Range Xor
ユーザー MZKiMZKi
提出日時 2021-03-31 21:41:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 889 bytes
コンパイル時間 2,903 ms
コンパイル使用メモリ 167,552 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-09 06:14:14
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 145 ms
16,384 KB
testcase_04 AC 153 ms
16,512 KB
testcase_05 AC 162 ms
16,384 KB
testcase_06 AC 163 ms
16,384 KB
testcase_07 AC 159 ms
16,512 KB
testcase_08 AC 160 ms
16,512 KB
testcase_09 AC 144 ms
16,512 KB
testcase_10 AC 154 ms
16,384 KB
testcase_11 AC 20 ms
5,760 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 37 ms
7,552 KB
testcase_14 AC 36 ms
7,168 KB
testcase_15 AC 120 ms
13,952 KB
testcase_16 AC 108 ms
13,056 KB
testcase_17 AC 53 ms
8,840 KB
testcase_18 AC 35 ms
7,248 KB
testcase_19 AC 87 ms
11,136 KB
testcase_20 AC 106 ms
13,056 KB
testcase_21 AC 79 ms
11,136 KB
testcase_22 AC 85 ms
11,392 KB
testcase_23 AC 40 ms
7,780 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 32 ms
6,912 KB
testcase_26 AC 56 ms
9,456 KB
testcase_27 AC 104 ms
12,160 KB
testcase_28 AC 28 ms
6,528 KB
testcase_29 AC 135 ms
14,976 KB
testcase_30 AC 151 ms
15,744 KB
testcase_31 AC 25 ms
6,236 KB
testcase_32 AC 21 ms
5,760 KB
testcase_33 AC 45 ms
8,284 KB
testcase_34 AC 149 ms
15,616 KB
testcase_35 AC 61 ms
9,600 KB
testcase_36 AC 153 ms
16,128 KB
testcase_37 AC 131 ms
14,336 KB
testcase_38 AC 17 ms
5,504 KB
testcase_39 AC 97 ms
12,800 KB
testcase_40 AC 103 ms
12,416 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 12 ms
5,376 KB
testcase_43 WA -
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 WA -
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;
    rep(i, n){
        sum ^= a[i];
        mp[sum]++;
        if(mp[sum^k])ok = true;
    }
    cout << (ok ? "Yes" : "No") << endl;
}
0