結果
| 問題 | No.65 回数の期待値の練習 |
| コンテスト | |
| ユーザー |
aimy
|
| 提出日時 | 2017-06-20 14:55:07 |
| 言語 | Haskell (9.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 9,871 ms |
| コンパイル使用メモリ | 197,888 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-04-18 15:12:23 |
| 合計ジャッジ時間 | 11,203 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 3 WA * 13 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
apply n f x = foldr ($) x (replicate n f) main = readLn >>= print . evr evr n = sum $ apply (n-1) (\xs -> sum (map (/6) xs) : xs) [1]
aimy