結果

問題 No.1091 Range Xor Query
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-07-30 02:00:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,080 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-07-01 01:48:56
合計ジャッジ時間 21,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 214 ms
24,960 KB
testcase_04 AC 654 ms
17,280 KB
testcase_05 AC 688 ms
30,336 KB
testcase_06 AC 109 ms
14,592 KB
testcase_07 AC 710 ms
22,400 KB
testcase_08 AC 939 ms
25,088 KB
testcase_09 AC 514 ms
16,896 KB
testcase_10 AC 707 ms
26,624 KB
testcase_11 AC 856 ms
27,776 KB
testcase_12 AC 541 ms
30,080 KB
testcase_13 AC 999 ms
23,936 KB
testcase_14 AC 733 ms
26,496 KB
testcase_15 AC 775 ms
28,288 KB
testcase_16 AC 788 ms
17,024 KB
testcase_17 AC 1,006 ms
27,776 KB
testcase_18 AC 235 ms
15,192 KB
testcase_19 AC 267 ms
23,936 KB
testcase_20 AC 996 ms
23,424 KB
testcase_21 AC 516 ms
15,548 KB
testcase_22 AC 913 ms
27,008 KB
testcase_23 AC 1,043 ms
31,616 KB
testcase_24 AC 1,047 ms
31,744 KB
testcase_25 AC 1,063 ms
31,616 KB
testcase_26 AC 1,050 ms
31,744 KB
testcase_27 AC 1,080 ms
31,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:1: warning: assigned but unused variable - q
Syntax OK

ソースコード

diff #

n,q=gets.split.map &:to_i
a=gets.split.map &:to_i
z=0
b=[0]+a.map{|x|z=z^x}
$<.map{|s|l,r=s.split;p b[l.to_i-1]^b[r.to_i]}
0