結果

問題 No.1091 Range Xor Query
ユーザー ksukegamesksukegames
提出日時 2023-05-06 11:26:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 5,103 ms
コンパイル使用メモリ 308,612 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-05-03 00:48:49
合計ジャッジ時間 15,182 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 66 ms
5,376 KB
testcase_04 AC 260 ms
5,376 KB
testcase_05 AC 290 ms
6,144 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 292 ms
5,376 KB
testcase_08 AC 411 ms
5,376 KB
testcase_09 AC 200 ms
5,376 KB
testcase_10 AC 288 ms
6,016 KB
testcase_11 AC 374 ms
6,016 KB
testcase_12 AC 226 ms
6,016 KB
testcase_13 AC 452 ms
5,376 KB
testcase_14 AC 323 ms
5,760 KB
testcase_15 AC 343 ms
6,016 KB
testcase_16 AC 326 ms
5,376 KB
testcase_17 AC 454 ms
5,888 KB
testcase_18 AC 68 ms
5,376 KB
testcase_19 AC 87 ms
5,376 KB
testcase_20 AC 424 ms
5,376 KB
testcase_21 AC 205 ms
5,376 KB
testcase_22 AC 403 ms
6,016 KB
testcase_23 AC 433 ms
6,016 KB
testcase_24 AC 431 ms
6,144 KB
testcase_25 AC 441 ms
6,016 KB
testcase_26 AC 438 ms
6,016 KB
testcase_27 AC 435 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