結果
| 問題 |
No.53 悪の漸化式
|
| コンテスト | |
| ユーザー |
aimy
|
| 提出日時 | 2017-05-10 10:36:41 |
| 言語 | Haskell (9.10.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 9,772 ms |
| コンパイル使用メモリ | 175,744 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-15 07:04:59 |
| 合計ジャッジ時間 | 5,694 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 WA * 6 |
コンパイルメッセージ
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
ソースコード
main = readLn >>= print . (aku !!) aku = reverse (apply 100 (\as@(a1:a2:_) -> (19*a1-12*a2)/4 : as) [3,4]) where apply n f x = foldr ($) x (replicate n f)
aimy