結果

問題 No.1091 Range Xor Query
ユーザー 小野寺健小野寺健
提出日時 2021-11-05 15:17:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,416 KB
最終ジャッジ日時 2024-11-06 05:42:56
合計ジャッジ時間 16,031 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,416 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 86 ms
12,416 KB
testcase_03 AC 192 ms
23,168 KB
testcase_04 AC 456 ms
22,356 KB
testcase_05 AC 478 ms
29,824 KB
testcase_06 AC 105 ms
14,464 KB
testcase_07 AC 485 ms
23,400 KB
testcase_08 AC 685 ms
27,512 KB
testcase_09 AC 359 ms
19,532 KB
testcase_10 AC 474 ms
26,496 KB
testcase_11 AC 600 ms
28,160 KB
testcase_12 AC 387 ms
29,696 KB
testcase_13 AC 714 ms
28,884 KB
testcase_14 AC 518 ms
26,240 KB
testcase_15 AC 536 ms
28,928 KB
testcase_16 AC 536 ms
25,412 KB
testcase_17 AC 685 ms
29,668 KB
testcase_18 AC 176 ms
15,104 KB
testcase_19 AC 210 ms
22,272 KB
testcase_20 AC 670 ms
27,624 KB
testcase_21 AC 363 ms
18,772 KB
testcase_22 AC 632 ms
28,924 KB
testcase_23 AC 737 ms
33,416 KB
testcase_24 AC 739 ms
33,316 KB
testcase_25 AC 733 ms
33,412 KB
testcase_26 AC 733 ms
33,316 KB
testcase_27 AC 744 ms
33,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, Q = gets.split(" ").map{|s| s.to_i}
a = gets.split(" ").map{|s| s.to_i}

q = []
Q.times {
	q << gets.split(" ").map{|s| s.to_i}
}

sx = Array.new(N+1, 0)
0.upto(N-1) {|i|
	sx[i+1] = sx[i] ^ a[i]
}

q.each {|l, r|
	puts sx[l-1] ^ sx[r]
}
0