結果

問題 No.1091 Range Xor Query
ユーザー ksukegamesksukegames
提出日時 2023-05-06 11:23:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 5,307 ms
コンパイル使用メモリ 308,612 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-05-03 00:47:22
合計ジャッジ時間 15,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 59 ms
5,376 KB
testcase_04 AC 257 ms
5,376 KB
testcase_05 AC 261 ms
6,016 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 258 ms
5,376 KB
testcase_08 AC 407 ms
5,376 KB
testcase_09 AC 179 ms
5,376 KB
testcase_10 AC 257 ms
5,888 KB
testcase_11 AC 348 ms
5,888 KB
testcase_12 AC 204 ms
6,016 KB
testcase_13 AC 412 ms
5,376 KB
testcase_14 AC 293 ms
5,760 KB
testcase_15 AC 303 ms
6,016 KB
testcase_16 AC 292 ms
5,376 KB
testcase_17 AC 418 ms
5,888 KB
testcase_18 AC 61 ms
5,376 KB
testcase_19 AC 78 ms
5,376 KB
testcase_20 AC 368 ms
5,376 KB
testcase_21 AC 181 ms
5,376 KB
testcase_22 AC 350 ms
5,888 KB
testcase_23 AC 390 ms
6,144 KB
testcase_24 AC 395 ms
6,016 KB
testcase_25 AC 396 ms
6,144 KB
testcase_26 AC 396 ms
6,016 KB
testcase_27 AC 391 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define coutf(f) cout << fixed << setprecision(f)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()

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

int e() {
	return 0;
}

int main() {
	int n, q;
	cin >> n >> q;
	segtree<int, op, e> seg(n);
	rep(i, n) {
		int a;
		cin >> a;
		seg.set(i, a);
	}
	rep(i, q) {
		int l, r;
		cin >> l >> r;
		cout << seg.prod(l - 1, r) << endl;
	}
	return 0;
}
0