結果

問題 No.1091 Range Xor Query
ユーザー hiro71687khiro71687k
提出日時 2023-08-26 23:52:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 4,176 ms
コンパイル使用メモリ 262,584 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-07 19:16:33
合計ジャッジ時間 15,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 60 ms
6,940 KB
testcase_04 AC 245 ms
6,940 KB
testcase_05 AC 273 ms
6,940 KB
testcase_06 AC 12 ms
6,944 KB
testcase_07 AC 273 ms
6,940 KB
testcase_08 AC 389 ms
6,944 KB
testcase_09 AC 189 ms
6,940 KB
testcase_10 AC 275 ms
6,940 KB
testcase_11 AC 348 ms
6,940 KB
testcase_12 AC 209 ms
6,944 KB
testcase_13 AC 416 ms
6,940 KB
testcase_14 AC 294 ms
6,944 KB
testcase_15 AC 322 ms
6,940 KB
testcase_16 AC 303 ms
6,940 KB
testcase_17 AC 423 ms
6,940 KB
testcase_18 AC 63 ms
6,944 KB
testcase_19 AC 81 ms
6,940 KB
testcase_20 AC 395 ms
6,940 KB
testcase_21 AC 192 ms
6,940 KB
testcase_22 AC 382 ms
6,940 KB
testcase_23 AC 418 ms
6,940 KB
testcase_24 AC 421 ms
6,940 KB
testcase_25 AC 421 ms
6,944 KB
testcase_26 AC 421 ms
6,940 KB
testcase_27 AC 415 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1009999999999999990;
int main(){
    ll n,q;
    cin >> n >> q;
    vector<ll>a(n);
    vector<ll>s(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
        if (i==0)
        {
            s[i]=a[i];
        }else{
            s[i]=s[i-1]^a[i];
        }
    }
    for (ll i = 0; i < q; i++)
    {
        ll l,r;
        cin >> l >> r;
        l--,r--;
        if (l==0)
        {
            cout << s[r] << endl;
        }else{
            ll x=s[l-1]^s[r];
            cout << x << endl;
        }
        
    }
    
}
0