結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-06-12 09:04:51
言語 Haskell
(9.8.2)
結果
AC  
実行時間 4,935 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 171,392 KB
実行使用メモリ 111,360 KB
最終ジャッジ日時 2024-09-24 16:49:21
合計ジャッジ時間 103,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,279 ms
111,360 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 1,675 ms
35,712 KB
testcase_03 AC 3,195 ms
66,304 KB
testcase_04 AC 4,184 ms
66,432 KB
testcase_05 AC 4,192 ms
66,560 KB
testcase_06 AC 4,175 ms
66,304 KB
testcase_07 AC 4,510 ms
95,104 KB
testcase_08 AC 4,456 ms
94,976 KB
testcase_09 AC 4,481 ms
94,976 KB
testcase_10 AC 3,786 ms
62,208 KB
testcase_11 AC 3,967 ms
64,256 KB
testcase_12 AC 3,644 ms
60,160 KB
testcase_13 AC 4,059 ms
80,768 KB
testcase_14 AC 4,240 ms
86,912 KB
testcase_15 AC 3,759 ms
66,304 KB
testcase_16 AC 4,405 ms
66,304 KB
testcase_17 AC 4,350 ms
66,304 KB
testcase_18 AC 4,322 ms
66,304 KB
testcase_19 AC 4,837 ms
95,232 KB
testcase_20 AC 4,923 ms
94,976 KB
testcase_21 AC 4,935 ms
95,104 KB
testcase_22 AC 3,923 ms
62,336 KB
testcase_23 AC 4,103 ms
64,256 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 88 ms
9,856 KB
testcase_26 AC 35 ms
8,448 KB
testcase_27 AC 26 ms
8,576 KB
testcase_28 AC 701 ms
21,376 KB
testcase_29 AC 350 ms
16,128 KB
testcase_30 AC 93 ms
9,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Fixed
import Data.Int
import Text.Printf

apply n f x = foldr ($) x (replicate n f)

lmin = 1e-9 :: Pico
lmax = 1e9 :: Pico
eps = 1e-10 :: Pico

main = do
 getLine
 ls <- map (fromIntegral . (read::String->Int64)) . words <$> getLine
 k <- readLn
 putStrLn $ showFixed True (yokuaru k ls)

yokuaru k ls = snd $ apply 60 (bsearch k ls) (lmin,lmax)

bsearch k ls (lo,hi)
 | cuts md ls < k = (lo,md)
 | otherwise = (md,hi)
 where
  md = (lo + hi) / 2

cuts x = sum . map (floor . (/x))
0