結果

問題 No.1091 Range Xor Query
ユーザー 👑 CleyLCleyL
提出日時 2022-02-03 00:00:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 69,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 09:38:50
合計ジャッジ時間 11,298 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 58 ms
5,376 KB
testcase_04 AC 246 ms
5,376 KB
testcase_05 AC 237 ms
5,376 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 246 ms
5,376 KB
testcase_08 AC 349 ms
5,376 KB
testcase_09 AC 172 ms
5,376 KB
testcase_10 AC 236 ms
5,376 KB
testcase_11 AC 321 ms
5,376 KB
testcase_12 AC 206 ms
5,376 KB
testcase_13 AC 371 ms
5,376 KB
testcase_14 AC 268 ms
5,376 KB
testcase_15 AC 273 ms
5,376 KB
testcase_16 AC 270 ms
5,376 KB
testcase_17 AC 372 ms
5,376 KB
testcase_18 AC 66 ms
5,376 KB
testcase_19 AC 76 ms
5,376 KB
testcase_20 AC 384 ms
5,376 KB
testcase_21 AC 176 ms
5,376 KB
testcase_22 AC 350 ms
5,376 KB
testcase_23 AC 388 ms
5,376 KB
testcase_24 AC 394 ms
5,376 KB
testcase_25 AC 412 ms
5,376 KB
testcase_26 AC 402 ms
5,376 KB
testcase_27 AC 434 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
    int n,q;cin>>n>>q;
    vector<int> A(n);
    vector<int> B(n+1);
    B[0] = 0;
    for(int i = 0; n > i; i++){
        cin>>A[i];
        B[i+1] = B[i]^A[i];
    }
    for(int i = 0; q > i; i++){
        int x,y;cin>>x>>y;
        cout << (B[x-1]^B[y]) << endl;
    }
}
0