結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-06-11 08:45:15
言語 Haskell
(9.10.1)
結果
AC  
実行時間 4,972 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 5,951 ms
コンパイル使用メモリ 192,128 KB
実行使用メモリ 36,816 KB
最終ジャッジ日時 2024-11-14 20:09:33
合計ジャッジ時間 110,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,333 ms
24,832 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 1,722 ms
16,384 KB
testcase_03 AC 3,276 ms
20,864 KB
testcase_04 AC 4,365 ms
18,816 KB
testcase_05 AC 4,362 ms
18,944 KB
testcase_06 AC 4,377 ms
18,816 KB
testcase_07 AC 4,607 ms
36,480 KB
testcase_08 AC 4,560 ms
36,696 KB
testcase_09 AC 4,585 ms
36,816 KB
testcase_10 AC 3,924 ms
18,432 KB
testcase_11 AC 4,208 ms
18,432 KB
testcase_12 AC 3,781 ms
18,304 KB
testcase_13 AC 4,188 ms
36,172 KB
testcase_14 AC 4,340 ms
36,544 KB
testcase_15 AC 3,878 ms
22,416 KB
testcase_16 AC 4,612 ms
19,072 KB
testcase_17 AC 4,569 ms
18,944 KB
testcase_18 AC 4,545 ms
19,200 KB
testcase_19 AC 4,972 ms
36,816 KB
testcase_20 AC 4,963 ms
36,688 KB
testcase_21 AC 4,941 ms
36,816 KB
testcase_22 AC 4,062 ms
18,304 KB
testcase_23 AC 4,304 ms
18,560 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 92 ms
8,832 KB
testcase_26 AC 37 ms
8,448 KB
testcase_27 AC 26 ms
8,192 KB
testcase_28 AC 728 ms
10,880 KB
testcase_29 AC 362 ms
10,240 KB
testcase_30 AC 96 ms
8,704 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 = 0 :: Pico
lmax = 10e9 :: Pico
eps = 10e-12 :: 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 (until (\(x,y) -> y-x < eps) (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