結果

問題 No.1091 Range Xor Query
ユーザー CELICACELICA
提出日時 2020-07-04 07:55:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 1,338 ms
コンパイル使用メモリ 169,348 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-09-17 12:26:06
合計ジャッジ時間 6,581 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 18 ms
5,376 KB
testcase_04 AC 41 ms
5,376 KB
testcase_05 AC 55 ms
5,632 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 47 ms
5,376 KB
testcase_08 AC 68 ms
5,760 KB
testcase_09 AC 30 ms
5,376 KB
testcase_10 AC 49 ms
5,376 KB
testcase_11 AC 64 ms
6,016 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 67 ms
5,888 KB
testcase_14 AC 57 ms
5,632 KB
testcase_15 AC 63 ms
5,760 KB
testcase_16 AC 49 ms
5,376 KB
testcase_17 AC 78 ms
6,144 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 69 ms
5,632 KB
testcase_21 AC 31 ms
5,376 KB
testcase_22 AC 71 ms
5,760 KB
testcase_23 AC 76 ms
6,656 KB
testcase_24 AC 77 ms
6,656 KB
testcase_25 AC 77 ms
6,528 KB
testcase_26 AC 76 ms
6,528 KB
testcase_27 AC 72 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = long long;

using namespace std;

int main()
{
    ll n,q;
    scanf("%lld%lld", &n, &q);

    vector<ll> a(n+1);
    a[0] = 0;
    for (int i = 1; i < n+1; ++i)
    {
        ll aa;
        scanf("%lld", &aa);
        a[i] = a[i-1]^aa;
    }

    ll l, r;
    vector<ll> res(q);
    for (int i = 0; i < q; ++i)
    {
        scanf("%lld%lld", &l, &r);
        res[i] = a[--l]^a[r];
    }

    for (int i = 0; i < q; ++i)
        printf("%lld\n", res[i]);

    return 0;
}
0