結果

問題 No.1456 Range Xor
ユーザー MtSakaMtSaka
提出日時 2021-03-13 10:08:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 175,192 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-05-08 02:42:56
合計ジャッジ時間 5,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 86 ms
11,008 KB
testcase_04 AC 90 ms
10,752 KB
testcase_05 AC 94 ms
11,392 KB
testcase_06 AC 89 ms
10,880 KB
testcase_07 AC 122 ms
14,336 KB
testcase_08 AC 85 ms
11,776 KB
testcase_09 AC 81 ms
11,008 KB
testcase_10 AC 83 ms
10,368 KB
testcase_11 AC 20 ms
5,760 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 33 ms
7,552 KB
testcase_14 AC 26 ms
6,144 KB
testcase_15 AC 62 ms
9,600 KB
testcase_16 AC 57 ms
8,960 KB
testcase_17 AC 50 ms
9,088 KB
testcase_18 AC 22 ms
5,632 KB
testcase_19 AC 48 ms
7,936 KB
testcase_20 AC 57 ms
8,960 KB
testcase_21 AC 45 ms
7,680 KB
testcase_22 AC 48 ms
8,064 KB
testcase_23 AC 29 ms
6,656 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 28 ms
7,168 KB
testcase_26 AC 54 ms
9,728 KB
testcase_27 AC 54 ms
8,320 KB
testcase_28 AC 26 ms
6,656 KB
testcase_29 AC 120 ms
15,232 KB
testcase_30 AC 81 ms
10,368 KB
testcase_31 AC 25 ms
6,400 KB
testcase_32 AC 20 ms
5,888 KB
testcase_33 AC 35 ms
7,552 KB
testcase_34 AC 77 ms
10,624 KB
testcase_35 AC 40 ms
7,168 KB
testcase_36 AC 83 ms
10,624 KB
testcase_37 AC 107 ms
14,720 KB
testcase_38 AC 15 ms
5,376 KB
testcase_39 AC 53 ms
8,576 KB
testcase_40 AC 74 ms
11,648 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 11 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 WA -
testcase_48 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,s,n) for(int i=s;i<n;i++)
using namespace std;
using ll=long long;
int main(){
    int n,k;
    cin>>n>>k;
    ll a[n];
    map<ll,ll>b;
    rep(i,0,n){
        cin>>a[i];
        if(i==0){
            b[a[i]^k]++;
        }
        else{
        a[i]^=a[i-1];
        b[a[i]^k]++;
        }
    }
    rep(i,0,n){
        if(b[a[i]]>=1){
            cout<<"Yes"<<endl;
            return 0;
        }
    }
    cout<<"No"<<endl;
    return 0;
}
0