結果

問題 No.1456 Range Xor
ユーザー chocoruskchocorusk
提出日時 2021-03-31 21:20:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 3,636 ms
コンパイル使用メモリ 196,836 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-05-09 04:45:59
合計ジャッジ時間 8,855 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 147 ms
13,568 KB
testcase_04 AC 149 ms
13,568 KB
testcase_05 AC 148 ms
13,568 KB
testcase_06 AC 149 ms
13,568 KB
testcase_07 AC 159 ms
13,696 KB
testcase_08 AC 158 ms
13,568 KB
testcase_09 AC 151 ms
13,568 KB
testcase_10 AC 137 ms
13,568 KB
testcase_11 AC 19 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 34 ms
6,656 KB
testcase_14 AC 34 ms
6,784 KB
testcase_15 AC 102 ms
11,904 KB
testcase_16 AC 94 ms
11,264 KB
testcase_17 AC 51 ms
7,808 KB
testcase_18 AC 34 ms
6,528 KB
testcase_19 AC 75 ms
9,728 KB
testcase_20 AC 100 ms
11,136 KB
testcase_21 AC 76 ms
9,600 KB
testcase_22 AC 83 ms
9,856 KB
testcase_23 AC 39 ms
6,912 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 31 ms
6,272 KB
testcase_26 AC 57 ms
8,320 KB
testcase_27 AC 91 ms
10,368 KB
testcase_28 AC 26 ms
6,016 KB
testcase_29 AC 121 ms
12,544 KB
testcase_30 AC 133 ms
13,056 KB
testcase_31 AC 24 ms
5,632 KB
testcase_32 AC 21 ms
5,376 KB
testcase_33 AC 45 ms
7,296 KB
testcase_34 AC 142 ms
12,928 KB
testcase_35 AC 62 ms
8,576 KB
testcase_36 AC 144 ms
13,440 KB
testcase_37 AC 123 ms
12,160 KB
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 96 ms
10,752 KB
testcase_40 AC 97 ms
10,624 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 11 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n; cin>>n;
    int k; cin>>k;
    int a[100010];
    for(int i=0; i<n; i++) cin>>a[i];
    int s[100010]; s[0]=0;
    for(int i=0; i<n; i++) s[i+1]=(s[i]^a[i]);
    map<int, int> mp;
    for(int i=0; i<=n; i++){
        mp[s[i]]++;
    }
    ll ans=0;
    for(int i=0; i<=n; i++) ans+=mp[s[i]^k];
    if(k==0) ans-=n+1;
    if(ans>0) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
    return 0;
}
0