結果
問題 |
No.1091 Range Xor Query
|
ユーザー |
|
提出日時 | 2024-11-18 22:45:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 |
ソースコード
#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; } }