結果

問題 No.1456 Range Xor
ユーザー aa
提出日時 2023-07-28 06:44:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 176,336 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-10-05 15:52:39
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 138 ms
12,928 KB
testcase_04 AC 137 ms
12,928 KB
testcase_05 AC 133 ms
13,056 KB
testcase_06 AC 134 ms
12,928 KB
testcase_07 AC 133 ms
12,928 KB
testcase_08 AC 134 ms
12,928 KB
testcase_09 AC 135 ms
12,928 KB
testcase_10 AC 134 ms
12,928 KB
testcase_11 AC 20 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 36 ms
6,528 KB
testcase_14 AC 36 ms
6,400 KB
testcase_15 AC 103 ms
11,264 KB
testcase_16 AC 91 ms
10,752 KB
testcase_17 AC 48 ms
7,552 KB
testcase_18 AC 34 ms
6,400 KB
testcase_19 AC 73 ms
9,344 KB
testcase_20 AC 94 ms
10,552 KB
testcase_21 AC 70 ms
9,216 KB
testcase_22 AC 75 ms
9,364 KB
testcase_23 AC 37 ms
6,656 KB
testcase_24 AC 15 ms
5,248 KB
testcase_25 AC 30 ms
6,144 KB
testcase_26 AC 53 ms
8,064 KB
testcase_27 AC 83 ms
9,948 KB
testcase_28 AC 27 ms
5,888 KB
testcase_29 AC 112 ms
11,904 KB
testcase_30 AC 123 ms
12,416 KB
testcase_31 AC 24 ms
5,760 KB
testcase_32 AC 20 ms
5,248 KB
testcase_33 AC 41 ms
7,168 KB
testcase_34 AC 117 ms
12,288 KB
testcase_35 AC 55 ms
8,168 KB
testcase_36 AC 129 ms
12,800 KB
testcase_37 AC 111 ms
11,520 KB
testcase_38 AC 16 ms
5,248 KB
testcase_39 AC 88 ms
10,240 KB
testcase_40 AC 86 ms
10,152 KB
testcase_41 AC 3 ms
5,248 KB
testcase_42 AC 11 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    map<int, int> mp;
    mp[0]++;
    bool ok = false;
    int x = 0;
    for (int i = 0; i < N; i++) {
        x ^= A[i];
        if (mp[x ^ K] > 0) {
            ok = true;
        }
        mp[x]++;
    }
    if (ok) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
    return 0;
}
0