結果

問題 No.1091 Range Xor Query
ユーザー 👑 obakyanobakyan
提出日時 2020-06-24 09:18:27
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-03 20:01:29
合計ジャッジ時間 4,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 36 ms
6,940 KB
testcase_04 AC 71 ms
6,940 KB
testcase_05 AC 99 ms
6,940 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 87 ms
6,940 KB
testcase_08 AC 119 ms
6,944 KB
testcase_09 AC 59 ms
6,944 KB
testcase_10 AC 94 ms
6,940 KB
testcase_11 AC 116 ms
6,940 KB
testcase_12 AC 82 ms
6,940 KB
testcase_13 AC 123 ms
6,940 KB
testcase_14 AC 99 ms
6,940 KB
testcase_15 AC 108 ms
6,944 KB
testcase_16 AC 90 ms
6,944 KB
testcase_17 AC 134 ms
6,944 KB
testcase_18 AC 21 ms
6,940 KB
testcase_19 AC 40 ms
6,940 KB
testcase_20 AC 119 ms
6,944 KB
testcase_21 AC 54 ms
6,944 KB
testcase_22 AC 122 ms
6,940 KB
testcase_23 AC 136 ms
6,944 KB
testcase_24 AC 136 ms
6,940 KB
testcase_25 AC 137 ms
6,948 KB
testcase_26 AC 139 ms
6,940 KB
testcase_27 AC 136 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local xor = bit.bxor
local n, q = io.read("*n", "*n")
local t = {}
local z = 0
for i = 1, n do
  local a = io.read("*n")
  z = xor(z, a)
  t[i] = z
end
for iq = 1, q do
  local l, r = io.read("*n", "*n")
  if l == 1 then
    print(t[r])
  else
    print(xor(t[l - 1], t[r]))
  end
end
0