結果

問題 No.1493 隣接xor
ユーザー 👑 obakyanobakyan
提出日時 2021-12-04 18:12:18
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 18,256 KB
最終ジャッジ日時 2024-07-07 00:36:49
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 75 ms
18,192 KB
testcase_04 AC 79 ms
18,168 KB
testcase_05 AC 77 ms
18,256 KB
testcase_06 AC 75 ms
18,124 KB
testcase_07 AC 76 ms
18,232 KB
testcase_08 AC 74 ms
18,156 KB
testcase_09 AC 74 ms
18,160 KB
testcase_10 AC 74 ms
18,124 KB
testcase_11 AC 73 ms
18,124 KB
testcase_12 AC 74 ms
18,248 KB
testcase_13 AC 54 ms
8,832 KB
testcase_14 AC 36 ms
8,832 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 38 ms
10,528 KB
testcase_21 AC 42 ms
10,472 KB
testcase_22 AC 32 ms
10,448 KB
testcase_23 AC 41 ms
10,528 KB
testcase_24 AC 71 ms
18,160 KB
testcase_25 AC 32 ms
10,576 KB
testcase_26 AC 46 ms
10,572 KB
testcase_27 AC 21 ms
6,736 KB
testcase_28 AC 68 ms
18,252 KB
testcase_29 AC 45 ms
10,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 1000000007
local mfl = math.floor
local bxor = bit.bxor

local function badd(x, y)
  return (x + y) % mod
end

local function bsub(x, y)
  return x < y and x - y + mod or x - y
end

local n = io.read("*n")
local a = {}
for i = 1, n do
  a[i] = io.read("*n")
end
local asum = {a[1]}
for i = 2, n do
  asum[i] = bxor(asum[i - 1], a[i])
end

local summap = {}
local t = {}
t[0] = 1

local ts = 1

for i = 1, n do
  if summap[asum[i - 1]] then
    ts = bsub(ts, t[summap[asum[i - 1]]])
  end
  t[i] = ts
  ts = badd(ts, t[i])

  if 1 < i then
    summap[asum[i - 1]] = i - 1
  end

end
print(t[n])
0