結果

問題 No.1091 Range Xor Query
ユーザー pop_opop_o
提出日時 2024-08-06 23:59:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 168,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-06 23:59:11
合計ジャッジ時間 10,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 30 ms
5,376 KB
testcase_04 AC 179 ms
5,376 KB
testcase_05 AC 198 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 187 ms
5,376 KB
testcase_08 AC 254 ms
5,376 KB
testcase_09 AC 139 ms
5,376 KB
testcase_10 AC 178 ms
5,376 KB
testcase_11 AC 234 ms
5,376 KB
testcase_12 AC 123 ms
5,376 KB
testcase_13 AC 279 ms
5,376 KB
testcase_14 AC 194 ms
5,376 KB
testcase_15 AC 209 ms
5,376 KB
testcase_16 AC 217 ms
5,376 KB
testcase_17 AC 286 ms
5,376 KB
testcase_18 AC 45 ms
5,376 KB
testcase_19 AC 45 ms
5,376 KB
testcase_20 AC 279 ms
5,376 KB
testcase_21 AC 139 ms
5,376 KB
testcase_22 AC 255 ms
5,376 KB
testcase_23 AC 296 ms
5,376 KB
testcase_24 AC 296 ms
5,376 KB
testcase_25 AC 304 ms
5,376 KB
testcase_26 AC 299 ms
5,376 KB
testcase_27 AC 302 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int64_t inf = 1e18;
const int64_t mod = 998244353;
// const int64_t mod = 1000000007;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    int tt;
    cin >> tt;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> s(n+1);
    s[0] = 0;
    for (int i = 0; i < n; i++) {
        s[i+1] = s[i]^a[i];
    }
    for (;tt--;) {
        int l, r;
        cin >> l >> r;
        l--;
        cout << (s[l]^s[r]) << endl;
    }
}
0