結果

問題 No.1091 Range Xor Query
ユーザー SSRSSSRS
提出日時 2020-11-12 00:18:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 168,020 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 18:55:42
合計ジャッジ時間 11,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 60 ms
6,944 KB
testcase_04 AC 238 ms
6,944 KB
testcase_05 AC 238 ms
6,944 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 228 ms
5,376 KB
testcase_08 AC 322 ms
5,376 KB
testcase_09 AC 164 ms
5,376 KB
testcase_10 AC 233 ms
5,376 KB
testcase_11 AC 290 ms
5,376 KB
testcase_12 AC 179 ms
5,376 KB
testcase_13 AC 359 ms
5,376 KB
testcase_14 AC 251 ms
5,376 KB
testcase_15 AC 273 ms
5,376 KB
testcase_16 AC 256 ms
5,376 KB
testcase_17 AC 364 ms
5,376 KB
testcase_18 AC 54 ms
5,376 KB
testcase_19 AC 68 ms
5,376 KB
testcase_20 AC 335 ms
5,376 KB
testcase_21 AC 158 ms
5,376 KB
testcase_22 AC 320 ms
5,376 KB
testcase_23 AC 377 ms
5,376 KB
testcase_24 AC 361 ms
5,376 KB
testcase_25 AC 363 ms
5,376 KB
testcase_26 AC 368 ms
5,376 KB
testcase_27 AC 376 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, Q;
  cin >> N >> Q;
  vector<int> a(N);
  for (int i = 0; i < N; i++){
    cin >> a[i];
  }
  vector<int> s(N + 1);
  s[0] = 0;
  for (int i = 0; i < N; i++){
    s[i + 1] = s[i] ^ a[i];
  }
  for (int i = 0; i < Q; i++){
    int l, r;
    cin >> l >> r;
    l--;
    cout << (s[r] ^ s[l]) << endl;
  }
}
0