結果

問題 No.1091 Range Xor Query
ユーザー ashipanashipan
提出日時 2020-06-26 20:42:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 169,560 KB
実行使用メモリ 5,996 KB
最終ジャッジ日時 2024-07-04 18:16:50
合計ジャッジ時間 10,625 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 52 ms
5,376 KB
testcase_04 AC 232 ms
5,376 KB
testcase_05 AC 245 ms
5,376 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 237 ms
5,376 KB
testcase_08 AC 355 ms
5,412 KB
testcase_09 AC 189 ms
5,376 KB
testcase_10 AC 246 ms
5,376 KB
testcase_11 AC 322 ms
5,736 KB
testcase_12 AC 186 ms
5,376 KB
testcase_13 AC 388 ms
5,376 KB
testcase_14 AC 277 ms
5,376 KB
testcase_15 AC 306 ms
5,784 KB
testcase_16 AC 294 ms
5,376 KB
testcase_17 AC 383 ms
5,696 KB
testcase_18 AC 57 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 346 ms
5,376 KB
testcase_21 AC 172 ms
5,376 KB
testcase_22 AC 333 ms
5,604 KB
testcase_23 AC 380 ms
5,992 KB
testcase_24 AC 372 ms
5,996 KB
testcase_25 AC 379 ms
5,992 KB
testcase_26 AC 380 ms
5,992 KB
testcase_27 AC 417 ms
5,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
using namespace std;
using ll = long long;
using P = pair<int, int>;

int main()
{
    int n, q;
    cin >> n >> q;
    vector<int> a(n);
    rep(i, 0, n) cin >> a[i];
    vector<int> sum(n);
    sum[0] = a[0];
    rep(i, 0, n-1){
        sum[i+1] = sum[i]^a[i+1];
    }
    vector<int> ans;
    rep(i, 0, q){
        int l, r;
        cin >> l >> r;
        l--; r--;
        ans.push_back(sum[r]^sum[l-1]);
    }
    for(int i : ans){
        cout << i << endl;
    }
    return 0;
}
0