結果

問題 No.385 カップ麺生活
ユーザー 👑 obakyanobakyan
提出日時 2019-06-03 23:10:07
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 1,575 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-15 07:39:58
合計ジャッジ時間 2,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1,575 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 6 ms
6,944 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 109 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 13 ms
6,944 KB
testcase_34 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mce, mfl, msq, mmi, mma = math.ceil, math.floor, math.sqrt, math.min, math.max

local function getprimes(x)
  local primes = {}
  local allnums = {}
  for i = 1, x do allnums[i] = true end
  for i = 2, x do
    if(allnums[i]) then
      table.insert(primes, i)
      local lim = mfl(x / i)
      for j = 2, lim do
        allnums[j * i] = false
      end
    end
  end
  return primes
end

local m = io.read("*n")
local n = io.read("*n")
local c = {}
for i = 1, n do c[i] = io.read("*n") end
local primes = getprimes(m)

local t0 = -1
local t = {}
for i = 1, m - 1 do t[i] = -1 end
t[m] = 0
for i_c = 1, n do
  local cost = c[i_c]
  for i_t = 1, m do
    if 0 <= t[i_t] then
      local cnt = t[i_t]
      local t_tmp = i_t
      while cost <= t_tmp do
        cnt = cnt + 1
        if cost == t_tmp then
          if t0 == -1 then
            t0 = cnt
          else
            t0 = mma(t0, cnt)
          end
        else
          if t[t_tmp - cost] == -1 then
            t[t_tmp - cost] = cnt
          else
            t[t_tmp - cost] = mma(t[t_tmp - cost], cnt)
          end
        end
        t_tmp = t_tmp - cost
      end -- while cost <= t_tmp
    end -- 0 <= t[i_t]
  end -- for i_t
end -- for i_c
local normmax = t0
for i = 1, m do
  normmax = mma(normmax, t[i])
end
local primecost = 0
for i = 1, #primes do
  if 0 < t[primes[i]] then
    primecost = primecost + t[primes[i]]
  end
end
print(normmax + primecost)
0