結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aimyaimy
提出日時 2017-05-17 15:12:55
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 8,342 ms
コンパイル使用メモリ 181,248 KB
実行使用メモリ 39,876 KB
最終ジャッジ日時 2024-09-17 20:58:30
合計ジャッジ時間 67,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,244 ms
39,876 KB
testcase_01 WA -
testcase_02 AC 909 ms
17,280 KB
testcase_03 AC 1,741 ms
21,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2,065 ms
34,944 KB
testcase_07 AC 2,462 ms
35,792 KB
testcase_08 AC 2,427 ms
35,916 KB
testcase_09 AC 2,543 ms
35,916 KB
testcase_10 WA -
testcase_11 AC 1,932 ms
34,816 KB
testcase_12 AC 1,813 ms
34,944 KB
testcase_13 AC 2,202 ms
35,916 KB
testcase_14 AC 2,313 ms
35,896 KB
testcase_15 AC 2,150 ms
35,848 KB
testcase_16 AC 2,041 ms
34,944 KB
testcase_17 AC 2,038 ms
34,944 KB
testcase_18 AC 2,018 ms
35,072 KB
testcase_19 AC 2,507 ms
35,788 KB
testcase_20 AC 2,703 ms
35,916 KB
testcase_21 AC 2,549 ms
35,792 KB
testcase_22 AC 1,861 ms
34,816 KB
testcase_23 AC 1,962 ms
34,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 400 ms
12,288 KB
testcase_29 WA -
testcase_30 AC 53 ms
8,960 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
import Data.Maybe
import qualified Data.ByteString.Char8 as B

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

lmin = 0
lmax = 10e9
nbs = 50

main = do
 getLine
 ls <- map (fromIntegral . fst . fromJust . B.readInt) . B.words <$> B.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