結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-06-11 09:13:28
言語 Haskell
(9.8.2)
結果
AC  
実行時間 4,331 ms / 5,000 ms
コード長 562 bytes
コンパイル時間 13,113 ms
コンパイル使用メモリ 180,832 KB
実行使用メモリ 39,168 KB
最終ジャッジ日時 2024-11-08 12:05:01
合計ジャッジ時間 104,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,691 ms
39,168 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 1,476 ms
16,768 KB
testcase_03 AC 2,829 ms
20,480 KB
testcase_04 AC 3,847 ms
18,944 KB
testcase_05 AC 3,859 ms
18,944 KB
testcase_06 AC 3,860 ms
19,072 KB
testcase_07 AC 3,928 ms
37,632 KB
testcase_08 AC 3,919 ms
37,632 KB
testcase_09 AC 3,946 ms
37,504 KB
testcase_10 AC 3,454 ms
18,048 KB
testcase_11 AC 3,645 ms
18,304 KB
testcase_12 AC 3,311 ms
18,304 KB
testcase_13 AC 3,638 ms
36,224 KB
testcase_14 AC 3,754 ms
37,120 KB
testcase_15 AC 3,340 ms
22,144 KB
testcase_16 AC 4,040 ms
19,072 KB
testcase_17 AC 4,008 ms
18,944 KB
testcase_18 AC 3,949 ms
18,944 KB
testcase_19 AC 4,331 ms
37,632 KB
testcase_20 AC 4,318 ms
37,632 KB
testcase_21 AC 4,315 ms
37,632 KB
testcase_22 AC 3,551 ms
18,176 KB
testcase_23 AC 3,743 ms
18,560 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 81 ms
8,960 KB
testcase_26 AC 33 ms
8,448 KB
testcase_27 AC 24 ms
8,192 KB
testcase_28 AC 630 ms
11,008 KB
testcase_29 AC 315 ms
10,368 KB
testcase_30 AC 86 ms
8,832 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 Text.Printf
import Data.Maybe
import qualified Data.ByteString.Char8 as B

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 . fst . fromJust . B.readInt) . B.words <$> B.getLine :: IO [Pico]
 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