結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-10-26 11:13:26
言語 Haskell
(9.8.2)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 167,808 KB
実行使用メモリ 7,792 KB
最終ジャッジ日時 2023-10-11 10:15:33
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,792 KB
testcase_01 AC 3 ms
7,620 KB
testcase_02 AC 3 ms
7,648 KB
testcase_03 AC 3 ms
7,600 KB
testcase_04 AC 2 ms
7,712 KB
testcase_05 AC 3 ms
7,744 KB
testcase_06 AC 3 ms
7,664 KB
testcase_07 AC 2 ms
7,676 KB
testcase_08 AC 3 ms
7,676 KB
testcase_09 AC 2 ms
7,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Text.Printf (printf)

findExpectation :: [Double] -> Double
findExpectation (p : c : _) = ep ** p * ec ** c
    where
        ep = (2.0 + 3.0 + 5.0 + 7.0 + 11.0 + 13.0) / 6.0
        ec = (4.0 + 6.0 + 8.0 + 9.0 + 10.0 + 12.0) / 6.0

main :: IO ()
main = printf "%.11f\n" . findExpectation . map read . words =<< getLine
0