結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー ducktailducktail
提出日時 2018-04-11 15:11:21
言語 Haskell
(9.8.2)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 8,960 ms
コンパイル使用メモリ 173,440 KB
実行使用メモリ 33,664 KB
最終ジャッジ日時 2024-06-26 21:11:58
合計ジャッジ時間 11,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 8 ms
8,320 KB
testcase_05 AC 38 ms
10,112 KB
testcase_06 AC 178 ms
18,048 KB
testcase_07 AC 350 ms
31,616 KB
testcase_08 AC 154 ms
33,664 KB
testcase_09 AC 96 ms
28,544 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 Control.Applicative ((<$>))

main :: IO ()
main = solve <$> getLine >>= mapM_ print

solve :: String -> [Double]
solve s = f [] (length $ filter (== 'o') s) (length s) s
  where
    f ds _ _ [] = reverse ds
    f ds t b (x:xs) = let p = (fromIntegral t) / (fromIntegral b) * 100
                      in if x == 'o' then f (p:ds) (t-1) (b-1) xs
                         else f (p:ds) t (b-1) xs
0