結果

問題 No.1091 Range Xor Query
ユーザー deuteridayodeuteridayo
提出日時 2020-12-03 20:40:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 1,723 ms
コンパイル使用メモリ 168,328 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 06:05:53
合計ジャッジ時間 12,845 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 60 ms
6,944 KB
testcase_04 AC 250 ms
6,940 KB
testcase_05 AC 272 ms
6,940 KB
testcase_06 AC 13 ms
6,944 KB
testcase_07 AC 277 ms
6,940 KB
testcase_08 AC 394 ms
6,940 KB
testcase_09 AC 194 ms
6,944 KB
testcase_10 AC 274 ms
6,940 KB
testcase_11 AC 357 ms
6,944 KB
testcase_12 AC 206 ms
6,940 KB
testcase_13 AC 416 ms
6,940 KB
testcase_14 AC 298 ms
6,944 KB
testcase_15 AC 320 ms
6,940 KB
testcase_16 AC 304 ms
6,940 KB
testcase_17 AC 424 ms
6,944 KB
testcase_18 AC 64 ms
6,940 KB
testcase_19 AC 82 ms
6,940 KB
testcase_20 AC 404 ms
6,944 KB
testcase_21 AC 191 ms
6,940 KB
testcase_22 AC 375 ms
6,944 KB
testcase_23 AC 425 ms
6,940 KB
testcase_24 AC 417 ms
6,944 KB
testcase_25 AC 418 ms
6,940 KB
testcase_26 AC 423 ms
6,944 KB
testcase_27 AC 422 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using lint = long long;
long const mod = 1e9+7;
int main(){
    lint n,q;
    cin >> n >> q;
    lint a[n+1];
    for(int i=1;i<=n;i++)cin >> a[i];
    lint xorr[n+1];
    xorr[0] = 0;
    for(int i=1;i<=n;i++){
        xorr[i] = xorr[i-1] ^ a[i];
    }
    for(int i=0;i<q;i++){
        lint l,r;
        cin >> l >> r;
        cout << (xorr[l-1] ^ xorr[r] )<< endl;
    }
}
0