結果

問題 No.1091 Range Xor Query
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-08-10 12:46:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 246,600 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-08-10 12:47:00
合計ジャッジ時間 11,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 55 ms
5,376 KB
testcase_04 AC 213 ms
5,376 KB
testcase_05 AC 258 ms
5,504 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 245 ms
5,376 KB
testcase_08 AC 351 ms
5,760 KB
testcase_09 AC 174 ms
5,376 KB
testcase_10 AC 239 ms
5,376 KB
testcase_11 AC 305 ms
5,760 KB
testcase_12 AC 183 ms
5,376 KB
testcase_13 AC 367 ms
5,632 KB
testcase_14 AC 275 ms
5,504 KB
testcase_15 AC 284 ms
5,760 KB
testcase_16 AC 276 ms
5,376 KB
testcase_17 AC 372 ms
6,016 KB
testcase_18 AC 56 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 347 ms
5,504 KB
testcase_21 AC 164 ms
5,376 KB
testcase_22 AC 343 ms
5,632 KB
testcase_23 AC 368 ms
6,528 KB
testcase_24 AC 394 ms
6,400 KB
testcase_25 AC 380 ms
6,400 KB
testcase_26 AC 365 ms
6,528 KB
testcase_27 AC 382 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()

int main(){
    int N, Q;
    cin >> N >> Q;
    vector<int> A(N), l(Q), r(Q);
    rep(i, 0, N) cin >> A[i];
    rep(i, 0, Q) cin >> l[i] >> r[i];

    vector<int> S(N+1);
    rep(i, 0, N) S[i+1] = S[i] ^ A[i];

    rep(i, 0, Q){
        int ans = S[r[i]] ^ S[l[i]-1];
        cout << ans << endl;
    }

    return 0;
}
0