結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 👑 obakyanobakyan
提出日時 2019-06-09 15:38:57
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 11,724 KB
最終ジャッジ日時 2024-11-08 12:54:10
合計ジャッジ時間 7,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
8,832 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 90 ms
6,192 KB
testcase_03 AC 174 ms
9,992 KB
testcase_04 AC 226 ms
8,896 KB
testcase_05 AC 222 ms
9,020 KB
testcase_06 AC 224 ms
9,016 KB
testcase_07 AC 238 ms
11,720 KB
testcase_08 AC 240 ms
11,724 KB
testcase_09 AC 238 ms
11,720 KB
testcase_10 AC 202 ms
9,004 KB
testcase_11 AC 210 ms
8,856 KB
testcase_12 AC 190 ms
8,892 KB
testcase_13 AC 217 ms
11,340 KB
testcase_14 AC 226 ms
11,504 KB
testcase_15 AC 202 ms
10,240 KB
testcase_16 AC 223 ms
9,024 KB
testcase_17 AC 221 ms
9,016 KB
testcase_18 AC 221 ms
8,888 KB
testcase_19 AC 241 ms
11,592 KB
testcase_20 AC 241 ms
11,724 KB
testcase_21 AC 242 ms
11,596 KB
testcase_22 AC 201 ms
9,004 KB
testcase_23 AC 211 ms
9,012 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 39 ms
5,248 KB
testcase_29 AC 20 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma, mfl = math.min, math.max, math.floor
local n = io.read("*n", "*l")
local str = io.read()
local ls = {}
local lmin, lmax = 0, 0
local ti = 1
for v in str:gmatch("%d+") do
  local num = tonumber(v)
  if lmax == 0 then
    lmin, lmax = num, num
  else
    lmin, lmax = mmi(lmin, num), mma(lmax, num)
  end
  ls[ti] = num
  ti = ti + 1
end
local k = io.read("*n")

local function check(tgt)
  local cnt = 0
  for i = 1, n do
    cnt = cnt + mfl(ls[i] / tgt)
  end
  return k <= cnt
end

local min, max = lmin / k, lmax
--while 1.0e-10 < max - min do
for i = 1, 500 do
  local mid = (min + max) / 2
  if check(mid) then
    min = mid
  else
    max = mid
  end
end
print(string.format("%.11f", (min + max) / 2))
0