結果

問題 No.1091 Range Xor Query
ユーザー KKT89KKT89
提出日時 2020-06-26 06:33:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 84,736 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 22:06:21
合計ジャッジ時間 8,339 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 30 ms
5,376 KB
testcase_04 AC 187 ms
5,376 KB
testcase_05 AC 184 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 199 ms
5,376 KB
testcase_08 AC 261 ms
5,376 KB
testcase_09 AC 136 ms
5,376 KB
testcase_10 AC 184 ms
5,376 KB
testcase_11 AC 236 ms
5,376 KB
testcase_12 AC 127 ms
5,376 KB
testcase_13 AC 287 ms
5,376 KB
testcase_14 AC 196 ms
5,376 KB
testcase_15 AC 208 ms
5,376 KB
testcase_16 AC 223 ms
5,376 KB
testcase_17 AC 276 ms
5,376 KB
testcase_18 AC 47 ms
5,376 KB
testcase_19 AC 47 ms
5,376 KB
testcase_20 AC 288 ms
5,376 KB
testcase_21 AC 139 ms
5,376 KB
testcase_22 AC 256 ms
5,376 KB
testcase_23 AC 306 ms
5,376 KB
testcase_24 AC 311 ms
5,376 KB
testcase_25 AC 302 ms
5,376 KB
testcase_26 AC 309 ms
5,376 KB
testcase_27 AC 294 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
using namespace std;
typedef long long int ll;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,q; cin >> n >> q;
    vector<int> a(n),v(n+1,0);
    for(int i=0;i<n;i++){
        cin >> a[i];
        v[i+1]=a[i];
        v[i+1]^=v[i];
    }
    while(q--){
        int l,r; cin >> l >> r;
        cout << (v[r]^v[l-1]) << endl;
    }
}
0