結果

問題 No.662 スロットマシーン
ユーザー ducktailducktail
提出日時 2018-08-26 14:50:02
言語 Haskell
(9.8.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 938 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 149,376 KB
最終ジャッジ日時 2024-07-01 03:56:10
合計ジャッジ時間 604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:3:1: error: [GHC-87110]
    Could not load module ‘Data.Map’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
  |
3 | import Data.Map (Map)
  | ^^^^^^^^^^^^^^^^^^^^^

Main.hs:4:1: error: [GHC-87110]
    Could not load module ‘Data.Map’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
  |
4 | import qualified Data.Map as M
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

ソースコード

diff #

import Control.Applicative
import Control.Monad
import Data.Map (Map)
import qualified Data.Map as M

main :: IO ()
main = do
  cns <- replicateM 5 (f <$> getLine)
  n1 <- readLn
  ma <- M.fromListWith (+) <$> replicateM n1 (g <$> getLine)
  n2 <- readLn
  mb <- M.fromListWith (+) <$> replicateM n2 (g <$> getLine)
  n3 <- readLn
  mc <- M.fromListWith (+) <$> replicateM n3 (g <$> getLine)
  prt $ solve cns (n1*n2*n3) ma mb mc
  where
    f = (\[str, coin] -> (str, read coin)) . words
    g s = (s, 1)

solve :: [(String, Int)] -> Int -> Map String Int -> Map String Int -> Map String Int -> (Double, [Int])
solve cns n ma mb mc = (exp, cts)
  where
    exp = (fromIntegral $ sum $ zipWith g cts cns) / fromIntegral n
    cts = map f cns
    f (s, _) = M.findWithDefault 0 s ma * M.findWithDefault 0 s mb * M.findWithDefault 0 s mc * 5
    g c (_,p) = c * p

prt :: (Double, [Int]) -> IO ()
prt (e,ps) = do
  print e
  mapM_ print ps
0