結果

問題 No.1091 Range Xor Query
ユーザー tatt61880tatt61880
提出日時 2021-03-13 15:02:43
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 148,092 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-09-16 11:51:56
合計ジャッジ時間 11,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 64 ms
5,632 KB
testcase_04 AC 187 ms
5,376 KB
testcase_05 AC 233 ms
6,528 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 214 ms
5,376 KB
testcase_08 AC 297 ms
5,760 KB
testcase_09 AC 140 ms
5,376 KB
testcase_10 AC 218 ms
5,888 KB
testcase_11 AC 278 ms
6,400 KB
testcase_12 AC 172 ms
6,528 KB
testcase_13 AC 317 ms
5,504 KB
testcase_14 AC 242 ms
5,888 KB
testcase_15 AC 252 ms
6,272 KB
testcase_16 AC 218 ms
5,376 KB
testcase_17 AC 321 ms
6,144 KB
testcase_18 AC 49 ms
5,376 KB
testcase_19 AC 76 ms
5,376 KB
testcase_20 AC 306 ms
5,376 KB
testcase_21 AC 142 ms
5,376 KB
testcase_22 AC 292 ms
6,016 KB
testcase_23 AC 337 ms
6,784 KB
testcase_24 AC 339 ms
6,784 KB
testcase_25 AC 335 ms
6,912 KB
testcase_26 AC 332 ms
6,912 KB
testcase_27 AC 336 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var q: int :: cui@inputInt()
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	
	var cum: []bit64 :: #[n + 1]bit64
	for i(1, n)
		do cum[i] :: cum[i - 1].xor(a[i - 1] $ bit64)
	end for
	for(1, q)
		var l: int :: cui@inputInt()
		var r: int :: cui@inputInt()
		var ans: int :: cum[r].xor(cum[l - 1]) $ int
		do cui@print("\{ans}\n")
	end for
end func
0