結果

問題 No.1091 Range Xor Query
ユーザー forest3forest3
提出日時 2020-07-02 21:37:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 168,652 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 05:56:30
合計ジャッジ時間 12,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 59 ms
6,940 KB
testcase_04 AC 245 ms
6,940 KB
testcase_05 AC 272 ms
6,944 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 270 ms
6,944 KB
testcase_08 AC 380 ms
6,944 KB
testcase_09 AC 189 ms
6,940 KB
testcase_10 AC 269 ms
6,940 KB
testcase_11 AC 337 ms
6,940 KB
testcase_12 AC 201 ms
6,944 KB
testcase_13 AC 409 ms
6,940 KB
testcase_14 AC 287 ms
6,944 KB
testcase_15 AC 304 ms
6,940 KB
testcase_16 AC 301 ms
6,944 KB
testcase_17 AC 409 ms
6,940 KB
testcase_18 AC 63 ms
6,940 KB
testcase_19 AC 81 ms
6,944 KB
testcase_20 AC 379 ms
6,940 KB
testcase_21 AC 193 ms
6,940 KB
testcase_22 AC 368 ms
6,944 KB
testcase_23 AC 415 ms
6,944 KB
testcase_24 AC 418 ms
6,944 KB
testcase_25 AC 421 ms
6,940 KB
testcase_26 AC 423 ms
6,944 KB
testcase_27 AC 420 ms
6,940 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> acc( N + 1 );
	for( int i = 0; i < N; i++ ) {
		acc[i + 1] = acc[i] ^ a[i];
	}

	for( int i = 0; i < Q; i++ ) {
		int l, r;
		cin >> l >> r;
		int ans = acc[r] ^ acc[l - 1];
		cout << ans << endl;
	}
}
0