結果

問題 No.634 硬貨の枚数1
ユーザー 👑 obakyanobakyan
提出日時 2019-06-04 22:46:32
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 140,772 KB
最終ジャッジ日時 2024-09-17 20:54:01
合計ジャッジ時間 12,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
140,772 KB
testcase_01 WA -
testcase_02 AC 68 ms
133,836 KB
testcase_03 AC 68 ms
133,792 KB
testcase_04 AC 69 ms
133,768 KB
testcase_05 AC 69 ms
133,784 KB
testcase_06 AC 69 ms
133,800 KB
testcase_07 AC 69 ms
133,764 KB
testcase_08 AC 68 ms
133,776 KB
testcase_09 AC 68 ms
133,764 KB
testcase_10 AC 68 ms
133,796 KB
testcase_11 AC 70 ms
133,680 KB
testcase_12 AC 67 ms
133,776 KB
testcase_13 AC 67 ms
133,684 KB
testcase_14 AC 111 ms
133,684 KB
testcase_15 AC 628 ms
133,836 KB
testcase_16 AC 226 ms
133,800 KB
testcase_17 AC 333 ms
133,760 KB
testcase_18 AC 262 ms
133,684 KB
testcase_19 AC 67 ms
133,744 KB
testcase_20 AC 69 ms
133,804 KB
testcase_21 AC 434 ms
133,792 KB
testcase_22 AC 600 ms
133,824 KB
testcase_23 AC 205 ms
133,788 KB
testcase_24 AC 68 ms
133,860 KB
testcase_25 AC 69 ms
133,756 KB
testcase_26 AC 67 ms
133,796 KB
testcase_27 AC 68 ms
133,680 KB
testcase_28 AC 69 ms
133,740 KB
testcase_29 AC 70 ms
133,740 KB
testcase_30 AC 69 ms
133,792 KB
testcase_31 AC 70 ms
133,756 KB
testcase_32 AC 69 ms
133,680 KB
testcase_33 AC 70 ms
133,768 KB
testcase_34 AC 93 ms
133,748 KB
testcase_35 AC 211 ms
133,648 KB
testcase_36 AC 301 ms
133,776 KB
testcase_37 AC 236 ms
133,792 KB
testcase_38 AC 103 ms
133,784 KB
testcase_39 AC 382 ms
133,748 KB
testcase_40 AC 286 ms
133,804 KB
testcase_41 AC 374 ms
133,800 KB
testcase_42 AC 365 ms
133,760 KB
testcase_43 AC 199 ms
133,780 KB
testcase_44 AC 67 ms
133,800 KB
testcase_45 AC 74 ms
133,768 KB
testcase_46 AC 70 ms
133,792 KB
testcase_47 AC 85 ms
133,784 KB
testcase_48 TLE -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl = math.floor
local n = io.read("*n")
local t = {}
local max = 4471
local v = {}
local inf = n + 1
for i = 1, max do v[i] = mfl(i * (i + 1) / 2) end
for i = 1, 10000000 do t[i] = inf end
local f = false
for i = 1, max do
  if n == t[v[i]] then
    t[n] = 1
    f = true
    break
  elseif v[i] < n then
    t[v[i]] = 1
  end
end

local mmi = math.min
while not f do
  for i = n - 1, 1, -1 do
    if t[i] ~= inf then
      for i_v = 1, max do
        local dst = i + v[i_v]
        if dst == n then
          f = true
          t[n] = t[i] + 1
          break
        elseif dst < n then
          t[dst] = mmi(t[i] + 1, t[dst])
        end
      end
    end
    if f then break end
  end
end
print(t[n])
0