結果

問題 No.1091 Range Xor Query
ユーザー hiro1729hiro1729
提出日時 2023-09-02 08:44:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 4,784 ms
コンパイル使用メモリ 309,248 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-11 15:37:44
合計ジャッジ時間 15,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 58 ms
6,944 KB
testcase_04 AC 229 ms
6,940 KB
testcase_05 AC 260 ms
6,940 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 262 ms
6,940 KB
testcase_08 AC 367 ms
6,940 KB
testcase_09 AC 181 ms
6,940 KB
testcase_10 AC 249 ms
6,944 KB
testcase_11 AC 323 ms
6,940 KB
testcase_12 AC 193 ms
6,940 KB
testcase_13 AC 384 ms
6,940 KB
testcase_14 AC 269 ms
6,944 KB
testcase_15 AC 286 ms
6,940 KB
testcase_16 AC 286 ms
6,944 KB
testcase_17 AC 381 ms
6,940 KB
testcase_18 AC 58 ms
6,944 KB
testcase_19 AC 76 ms
6,940 KB
testcase_20 AC 357 ms
6,940 KB
testcase_21 AC 172 ms
6,944 KB
testcase_22 AC 349 ms
6,944 KB
testcase_23 AC 381 ms
6,940 KB
testcase_24 AC 377 ms
6,944 KB
testcase_25 AC 374 ms
6,940 KB
testcase_26 AC 377 ms
6,944 KB
testcase_27 AC 383 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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);
	for (int i = 0; i < n; i++) {
		int a;
		cin >> a;
		seg.set(i, a);
	}
	int l, r;
	while (cin >> l >> r) cout << seg.prod(l - 1, r) << '\n';
}
0