結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | 👑 obakyan |
提出日時 | 2019-06-09 15:36:58 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
TLE
|
実行時間 | - |
コード長 | 703 bytes |
コンパイル時間 | 347 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 18,668 KB |
最終ジャッジ日時 | 2024-10-06 00:07:57 |
合計ジャッジ時間 | 7,836 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
8,832 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 31 ms
6,820 KB |
testcase_03 | AC | 61 ms
10,120 KB |
testcase_04 | AC | 69 ms
9,020 KB |
testcase_05 | AC | 69 ms
9,024 KB |
testcase_06 | AC | 70 ms
9,024 KB |
testcase_07 | AC | 82 ms
11,724 KB |
testcase_08 | AC | 86 ms
11,724 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
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 local mid = (min + max) / 2 if check(mid) then min = mid else max = mid end end print(string.format("%.11f", (min + max) / 2))