結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-05-17 13:49:46
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 8,296 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-09-17 12:33:39
合計ジャッジ時間 70,790 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,803 ms
112,384 KB
testcase_01 WA -
testcase_02 AC 1,073 ms
35,584 KB
testcase_03 AC 2,059 ms
66,432 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2,377 ms
66,304 KB
testcase_07 AC 2,941 ms
98,176 KB
testcase_08 AC 3,008 ms
98,176 KB
testcase_09 AC 3,038 ms
98,048 KB
testcase_10 WA -
testcase_11 AC 2,213 ms
64,384 KB
testcase_12 AC 2,087 ms
60,160 KB
testcase_13 AC 2,645 ms
86,016 KB
testcase_14 AC 2,761 ms
91,008 KB
testcase_15 AC 2,518 ms
77,184 KB
testcase_16 AC 2,347 ms
66,304 KB
testcase_17 AC 2,348 ms
66,304 KB
testcase_18 AC 2,343 ms
66,304 KB
testcase_19 AC 2,976 ms
98,176 KB
testcase_20 AC 2,959 ms
98,176 KB
testcase_21 AC 3,017 ms
98,048 KB
testcase_22 AC 2,124 ms
62,208 KB
testcase_23 AC 2,209 ms
64,256 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 442 ms
21,504 KB
testcase_29 WA -
testcase_30 AC 61 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.Ratio
import Text.Printf

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

lmin = 0
lmax = 10e9
nbs = 50

main = do
 getLine
 ls <- map (fromIntegral . read) . words <$> getLine
 k <- readLn
 printf "%.12f" (yokuaru k ls)

yokuaru :: Integer -> [Ratio Integer] -> Double
yokuaru k ls = fromRational (fst (apply nbs (bsearch k ls) (1,(lmin,lmax))))

bsearch k ls (x,(xn,xx))
 | cuts x ls < k = (x - (x-xn) / 2, (xn,x))
 | otherwise = (x + (xx-x) / 2, (x,xx))

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