結果

問題 No.1091 Range Xor Query
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-13 19:51:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 3,045 ms
コンパイル使用メモリ 245,196 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-13 19:51:56
合計ジャッジ時間 10,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 40 ms
5,248 KB
testcase_04 AC 79 ms
5,248 KB
testcase_05 AC 114 ms
5,248 KB
testcase_06 AC 10 ms
5,248 KB
testcase_07 AC 99 ms
5,248 KB
testcase_08 AC 140 ms
5,248 KB
testcase_09 AC 64 ms
5,248 KB
testcase_10 AC 107 ms
5,248 KB
testcase_11 AC 144 ms
5,248 KB
testcase_12 AC 98 ms
5,248 KB
testcase_13 AC 143 ms
5,248 KB
testcase_14 AC 113 ms
5,248 KB
testcase_15 AC 125 ms
5,248 KB
testcase_16 AC 97 ms
5,248 KB
testcase_17 AC 152 ms
5,248 KB
testcase_18 AC 24 ms
5,248 KB
testcase_19 AC 43 ms
5,248 KB
testcase_20 AC 142 ms
5,248 KB
testcase_21 AC 61 ms
5,248 KB
testcase_22 AC 140 ms
5,248 KB
testcase_23 AC 151 ms
5,248 KB
testcase_24 AC 147 ms
5,248 KB
testcase_25 AC 152 ms
5,248 KB
testcase_26 AC 147 ms
5,248 KB
testcase_27 AC 158 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(),(a).end()

int main() {
    cin.tie(nullptr);
    
    int N, Q;
    cin >> N >> Q;
    vector<int> A(N);
    rep(i, 0, N) cin >> A[i];
    rep(i, 1, N) A[i] ^= A[i - 1];
    
    rep(query, 0, Q) {
        int L, R;
        cin >> L >> R;
        L--, R--;
        
        if (L == 0) cout << A[R] << '\n';
        else cout << (A[R] ^ A[L - 1])<< '\n';
    }
}
0