結果

問題 No.1091 Range Xor Query
ユーザー SeiyaTSeiyaT
提出日時 2021-09-10 12:15:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 229,384 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-10 22:33:05
合計ジャッジ時間 14,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 271 ms
5,376 KB
testcase_05 AC 283 ms
6,016 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 274 ms
5,376 KB
testcase_08 AC 379 ms
5,376 KB
testcase_09 AC 193 ms
5,376 KB
testcase_10 AC 276 ms
6,144 KB
testcase_11 AC 336 ms
6,016 KB
testcase_12 AC 212 ms
6,144 KB
testcase_13 AC 454 ms
5,376 KB
testcase_14 AC 288 ms
5,888 KB
testcase_15 AC 315 ms
6,144 KB
testcase_16 AC 292 ms
5,376 KB
testcase_17 AC 409 ms
6,016 KB
testcase_18 AC 68 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 409 ms
5,376 KB
testcase_21 AC 189 ms
5,376 KB
testcase_22 AC 374 ms
6,016 KB
testcase_23 AC 400 ms
6,016 KB
testcase_24 AC 416 ms
6,144 KB
testcase_25 AC 410 ms
6,144 KB
testcase_26 AC 396 ms
6,144 KB
testcase_27 AC 395 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

using ll=long long;
ll mod=1000000007;
ll INF=1LL<<60;

int op(int a, int b) {
    return a^b;
}

int e() {
    return 0;
}

int main() {
	int N,Q;
	cin >> N >> Q;
	vector<int> A(N);
	for(int i=0;i<N;i++){
		cin >> A[i];
	}
	segtree<int, op, e> seg(A);
	for(int i=0;i<Q;i++){
		int L,R;
		cin >> L >> R;
		cout << seg.prod(L-1,R) << endl;
	}
}
0