結果

問題 No.1091 Range Xor Query
ユーザー nullnull
提出日時 2020-12-13 23:16:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 88,876 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 00:15:59
合計ジャッジ時間 9,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 53 ms
6,940 KB
testcase_04 AC 219 ms
6,944 KB
testcase_05 AC 238 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 247 ms
6,940 KB
testcase_08 AC 342 ms
6,944 KB
testcase_09 AC 178 ms
6,944 KB
testcase_10 AC 239 ms
6,944 KB
testcase_11 AC 318 ms
6,940 KB
testcase_12 AC 186 ms
6,940 KB
testcase_13 AC 375 ms
6,940 KB
testcase_14 AC 261 ms
6,940 KB
testcase_15 AC 282 ms
6,940 KB
testcase_16 AC 270 ms
6,944 KB
testcase_17 AC 362 ms
6,940 KB
testcase_18 AC 57 ms
6,940 KB
testcase_19 AC 72 ms
6,944 KB
testcase_20 AC 352 ms
6,940 KB
testcase_21 AC 167 ms
6,944 KB
testcase_22 AC 335 ms
6,940 KB
testcase_23 AC 377 ms
6,940 KB
testcase_24 AC 396 ms
6,940 KB
testcase_25 AC 380 ms
6,940 KB
testcase_26 AC 374 ms
6,944 KB
testcase_27 AC 378 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;

#define rep(i, n) for(int i = 0; i < n; ++i)

int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
            int n, q;
            cin >> n >> q;
            vector<int> a(n), b(n + 1);
            rep(i, n)cin >> a[i];
            rep(i, n)b[i + 1] = a[i] xor b[i];
            rep(i, q) {
                int l, r;
                cin >> l >> r;
                cout << (b[r] xor b[l - 1]) << '\n';
            }
    return 0;
}
0