結果

問題 No.1091 Range Xor Query
ユーザー しゅらにるーとにしゅらにるーとに
提出日時 2024-11-18 22:45:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 3,912 ms
コンパイル使用メモリ 229,328 KB
実行使用メモリ 8,936 KB
最終ジャッジ日時 2024-11-18 22:46:04
合計ジャッジ時間 14,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 63 ms
6,816 KB
testcase_04 AC 242 ms
6,816 KB
testcase_05 AC 263 ms
8,776 KB
testcase_06 AC 13 ms
6,816 KB
testcase_07 AC 283 ms
6,820 KB
testcase_08 AC 373 ms
6,816 KB
testcase_09 AC 184 ms
6,816 KB
testcase_10 AC 261 ms
8,476 KB
testcase_11 AC 361 ms
8,616 KB
testcase_12 AC 199 ms
8,732 KB
testcase_13 AC 399 ms
6,816 KB
testcase_14 AC 286 ms
8,376 KB
testcase_15 AC 328 ms
8,772 KB
testcase_16 AC 302 ms
6,820 KB
testcase_17 AC 390 ms
8,564 KB
testcase_18 AC 64 ms
6,816 KB
testcase_19 AC 86 ms
6,820 KB
testcase_20 AC 375 ms
6,816 KB
testcase_21 AC 183 ms
6,816 KB
testcase_22 AC 356 ms
8,580 KB
testcase_23 AC 412 ms
8,820 KB
testcase_24 AC 416 ms
8,904 KB
testcase_25 AC 394 ms
8,912 KB
testcase_26 AC 409 ms
8,936 KB
testcase_27 AC 388 ms
8,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ul=unsigned long long;
using ld=long double;
using mint = modint1000000007;
int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1};
int dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};
using Graph=vector<vector<int>>;
ll op(ll a,ll b){
    return (a^b);
}
ll e(){
    return 0ll;
}
int main(){
    ll N,Q;
    cin>>N>>Q;
    segtree<ll,op,e>seg(N);
    for(int i=0;i<N;i++){
        ll a;
        cin>>a;
        seg.set(i,a);
    }
    while(Q--){
        ll x,y;
        cin>>x>>y;
        x--;
            cout<<seg.prod(x,y)<<endl;
    }
}
0