結果

問題 No.1443 Andd
ユーザー 👑 obakyanobakyan
提出日時 2021-07-24 17:56:48
言語 Lua
(LuaJit 2.1.1696795921)
結果
MLE  
実行時間 -
コード長 936 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 543,104 KB
最終ジャッジ日時 2024-07-20 00:21:46
合計ジャッジ時間 8,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 37 ms
19,840 KB
testcase_04 AC 48 ms
19,968 KB
testcase_05 AC 39 ms
19,820 KB
testcase_06 AC 34 ms
19,676 KB
testcase_07 AC 46 ms
19,840 KB
testcase_08 AC 43 ms
19,968 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 52 ms
19,888 KB
testcase_11 AC 50 ms
19,968 KB
testcase_12 AC 46 ms
19,864 KB
testcase_13 AC 269 ms
137,984 KB
testcase_14 AC 276 ms
138,028 KB
testcase_15 AC 276 ms
137,932 KB
testcase_16 AC 278 ms
137,904 KB
testcase_17 AC 291 ms
137,984 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

local band = bit.band
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] = asum[i - 1] + a[i]
end
local all = {}
for i = 1, 1024 * n do
  all[i] = false
end
local dp1, dp2 = {}, {}
dp1 = {true}
dp2 = {false}
for i = 2, 1024 do
  dp1[i] = false
  dp2[i] = false
end
local ret = 1
all[asum[n] + 1] = true
for i = 1, n do
  local dpd1 = {}
  dpd2 = {}
  for j = 1, 1024 do
    dpd1[j] = false
    dpd2[j] = false
  end
  local ai = a[i]
  for j = 1, 1024 do
    if dp1[j] or dp2[j] then
      local dst1 = band(j - 1, ai) + 1
      local dst2 = ((j - 1 + ai) % 1024) + 1
      dpd1[dst1] = true
      dpd2[dst2] = true
    end
  end
  for j = 1, 1024 do
    dp1[j] = dpd1[j]
    dp2[j] = dpd2[j]
  end
  for j = 1, 1024 do
    local v = j + asum[n] - asum[i]
    if dp1[j] and not all[v] then
      ret = ret + 1
      all[v] = true
    end
  end
  print(ret)
end
0