結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-06-11 08:56:55
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 4,539 ms
コンパイル使用メモリ 193,152 KB
実行使用メモリ 40,004 KB
最終ジャッジ日時 2024-09-24 16:00:37
合計ジャッジ時間 77,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 1,223 ms
16,128 KB
testcase_03 AC 2,339 ms
20,496 KB
testcase_04 AC 3,142 ms
19,200 KB
testcase_05 AC 3,118 ms
19,200 KB
testcase_06 AC 3,120 ms
18,944 KB
testcase_07 AC 3,219 ms
35,672 KB
testcase_08 AC 3,210 ms
35,672 KB
testcase_09 WA -
testcase_10 AC 2,799 ms
18,176 KB
testcase_11 AC 2,950 ms
18,432 KB
testcase_12 AC 2,714 ms
18,176 KB
testcase_13 AC 2,952 ms
35,532 KB
testcase_14 AC 3,090 ms
35,516 KB
testcase_15 AC 2,759 ms
22,540 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 66 ms
8,704 KB
testcase_26 AC 28 ms
8,448 KB
testcase_27 AC 20 ms
8,192 KB
testcase_28 AC 514 ms
10,880 KB
testcase_29 AC 258 ms
10,368 KB
testcase_30 AC 69 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 = 10e5 :: Pico
eps = 10e-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 (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