結果

問題 No.1091 Range Xor Query
ユーザー laneguelanegue
提出日時 2020-06-25 23:42:47
言語 Crystal
(1.11.2)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 11,807 ms
コンパイル使用メモリ 295,240 KB
実行使用メモリ 16,820 KB
最終ジャッジ日時 2024-06-30 20:18:58
合計ジャッジ時間 21,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 39 ms
11,776 KB
testcase_04 AC 215 ms
6,944 KB
testcase_05 AC 204 ms
16,092 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 218 ms
9,216 KB
testcase_08 AC 314 ms
13,028 KB
testcase_09 AC 150 ms
6,940 KB
testcase_10 AC 211 ms
12,928 KB
testcase_11 AC 266 ms
12,916 KB
testcase_12 AC 151 ms
16,320 KB
testcase_13 AC 328 ms
9,472 KB
testcase_14 AC 225 ms
12,928 KB
testcase_15 AC 239 ms
13,016 KB
testcase_16 AC 245 ms
6,940 KB
testcase_17 AC 324 ms
12,972 KB
testcase_18 AC 55 ms
6,944 KB
testcase_19 AC 54 ms
9,472 KB
testcase_20 AC 315 ms
9,600 KB
testcase_21 AC 163 ms
6,940 KB
testcase_22 AC 293 ms
12,888 KB
testcase_23 AC 333 ms
16,264 KB
testcase_24 AC 331 ms
16,268 KB
testcase_25 AC 335 ms
16,820 KB
testcase_26 AC 336 ms
16,264 KB
testcase_27 AC 331 ms
16,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = read_line.split.map{|i|i.to_i}
a = read_line.split.map{|i|i.to_i}
xor = [0]
a.each{|ai|
    xor << (xor[-1] ^ ai)
}
q.times{
    l, r = read_line.split.map{|i|i.to_i}
    puts xor[l - 1] ^ xor[r]
}
0