結果

問題 No.1091 Range Xor Query
ユーザー iqueue02iqueue02
提出日時 2020-06-25 17:24:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 202,084 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 21:37:07
合計ジャッジ時間 10,997 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 61 ms
6,940 KB
testcase_04 AC 216 ms
6,944 KB
testcase_05 AC 243 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 261 ms
6,940 KB
testcase_08 AC 353 ms
6,944 KB
testcase_09 AC 189 ms
6,940 KB
testcase_10 AC 262 ms
6,944 KB
testcase_11 AC 310 ms
6,940 KB
testcase_12 AC 183 ms
6,940 KB
testcase_13 AC 364 ms
6,940 KB
testcase_14 AC 275 ms
6,940 KB
testcase_15 AC 314 ms
6,944 KB
testcase_16 AC 304 ms
6,944 KB
testcase_17 AC 406 ms
6,940 KB
testcase_18 AC 65 ms
6,944 KB
testcase_19 AC 74 ms
6,940 KB
testcase_20 AC 388 ms
6,944 KB
testcase_21 AC 179 ms
6,940 KB
testcase_22 AC 335 ms
6,940 KB
testcase_23 AC 379 ms
6,940 KB
testcase_24 AC 386 ms
6,940 KB
testcase_25 AC 374 ms
6,940 KB
testcase_26 AC 378 ms
6,944 KB
testcase_27 AC 395 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr int INF = 2e9;

int main() {
  int n, q;
  cin >> n >> q;
  vector<int> a(n);
  rep(i,n) cin >> a[i];
  vector<int> cumulative_xor(n + 1, 0);
  for (int i = 0; i < n; i++) cumulative_xor[i + 1] = cumulative_xor[i] ^ a[i];

  while (q--) {
    int l, r;
    cin >> l >> r;
    cout << (cumulative_xor[r] ^ cumulative_xor[l - 1]) << endl;
  }
  return 0;
} 
0