結果

問題 No.1091 Range Xor Query
ユーザー yuruhiyayuruhiya
提出日時 2020-06-26 12:21:07
言語 Crystal
(1.11.2)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 11,068 ms
コンパイル使用メモリ 295,552 KB
実行使用メモリ 17,080 KB
最終ジャッジ日時 2024-06-30 20:21:40
合計ジャッジ時間 19,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 38 ms
12,160 KB
testcase_04 AC 196 ms
6,944 KB
testcase_05 AC 201 ms
17,080 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 218 ms
9,472 KB
testcase_08 AC 301 ms
13,056 KB
testcase_09 AC 153 ms
6,944 KB
testcase_10 AC 209 ms
13,016 KB
testcase_11 AC 268 ms
12,632 KB
testcase_12 AC 147 ms
16,276 KB
testcase_13 AC 322 ms
9,472 KB
testcase_14 AC 220 ms
13,020 KB
testcase_15 AC 235 ms
13,056 KB
testcase_16 AC 243 ms
6,940 KB
testcase_17 AC 320 ms
12,388 KB
testcase_18 AC 54 ms
6,944 KB
testcase_19 AC 52 ms
9,472 KB
testcase_20 AC 313 ms
9,472 KB
testcase_21 AC 166 ms
6,940 KB
testcase_22 AC 301 ms
13,056 KB
testcase_23 AC 329 ms
16,396 KB
testcase_24 AC 331 ms
16,272 KB
testcase_25 AC 329 ms
16,404 KB
testcase_26 AC 333 ms
16,268 KB
testcase_27 AC 333 ms
16,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = read_line.split.map &.to_i
a = read_line.split.map &.to_i
a.unshift(0)
(1..n).each { |i| a[i] ^= a[i - 1] }
q.times do
  l, r = read_line.split.map &.to_i
  puts a[r] ^ a[l - 1]
end
0