結果

問題 No.1091 Range Xor Query
ユーザー AkabaEriAkabaEri
提出日時 2020-07-24 15:35:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 165,708 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 06:25:45
合計ジャッジ時間 12,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 58 ms
5,376 KB
testcase_04 AC 239 ms
5,376 KB
testcase_05 AC 267 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 271 ms
5,376 KB
testcase_08 AC 385 ms
5,376 KB
testcase_09 AC 182 ms
5,376 KB
testcase_10 AC 260 ms
5,376 KB
testcase_11 AC 340 ms
5,376 KB
testcase_12 AC 199 ms
5,376 KB
testcase_13 AC 399 ms
5,376 KB
testcase_14 AC 286 ms
5,376 KB
testcase_15 AC 305 ms
5,376 KB
testcase_16 AC 294 ms
5,376 KB
testcase_17 AC 403 ms
5,376 KB
testcase_18 AC 62 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 380 ms
5,376 KB
testcase_21 AC 188 ms
5,376 KB
testcase_22 AC 366 ms
5,376 KB
testcase_23 AC 407 ms
5,376 KB
testcase_24 AC 409 ms
5,376 KB
testcase_25 AC 409 ms
5,376 KB
testcase_26 AC 410 ms
5,376 KB
testcase_27 AC 418 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i= 0; i < (n); i++)
using ll= long long int;
using namespace std;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
ll mod= 1e9 + 7;


int main(){
  int n,q;
  cin >> n >> q;
  int a[n+1];
  a[0]=0;
  rep(i,n){
    int g;
    cin >>g;
    a[i+1]=g^a[i];
  }

  rep(i,q){
    int l,r;
    cin >> l >> r;
    int ans=a[l-1]^a[r];
    cout << ans << endl;
  }
}
0