結果

問題 No.1456 Range Xor
ユーザー kpinkcatkpinkcat
提出日時 2023-09-05 16:13:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 207,080 KB
実行使用メモリ 7,564 KB
最終ジャッジ日時 2024-06-23 11:43:48
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 45 ms
5,376 KB
testcase_04 AC 50 ms
5,376 KB
testcase_05 AC 65 ms
6,272 KB
testcase_06 AC 45 ms
5,376 KB
testcase_07 AC 76 ms
7,168 KB
testcase_08 AC 63 ms
5,888 KB
testcase_09 AC 46 ms
5,376 KB
testcase_10 AC 52 ms
5,376 KB
testcase_11 AC 15 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 38 ms
5,376 KB
testcase_16 AC 45 ms
5,376 KB
testcase_17 AC 38 ms
5,760 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 44 ms
5,620 KB
testcase_20 AC 48 ms
5,504 KB
testcase_21 AC 34 ms
5,376 KB
testcase_22 AC 30 ms
5,376 KB
testcase_23 AC 26 ms
5,376 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 23 ms
5,376 KB
testcase_26 AC 41 ms
5,756 KB
testcase_27 AC 41 ms
5,376 KB
testcase_28 AC 20 ms
5,376 KB
testcase_29 AC 83 ms
7,564 KB
testcase_30 AC 56 ms
5,376 KB
testcase_31 AC 18 ms
5,376 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 29 ms
5,376 KB
testcase_34 AC 62 ms
6,272 KB
testcase_35 AC 36 ms
5,376 KB
testcase_36 AC 56 ms
5,376 KB
testcase_37 AC 76 ms
7,552 KB
testcase_38 AC 13 ms
5,376 KB
testcase_39 AC 36 ms
5,376 KB
testcase_40 AC 57 ms
6,356 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 9 ms
5,376 KB
testcase_43 WA -
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 WA -
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;

int main()
{
    int n, k, t = 0;
    cin >> n >> k;
    set<int> st;
    vector<int> a(n); 
    for (int i = 0; i < n; i++) cin >> a[i];
    for (int i = 0; i < n; i++){
        t ^= a[i];
        st.insert(t);
        k ^= a[i];
        if(st.count(k)){
            cout << "Yes" << endl;
            return 0;
        }
    }
    cout << "No" << endl;
}
0