結果
問題 | No.347 微分と積分 |
ユーザー |
|
提出日時 | 2018-07-03 12:56:34 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 410 bytes |
コンパイル時間 | 8,188 ms |
コンパイル使用メモリ | 171,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 01:56:05 |
合計ジャッジ時間 | 6,413 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
コンパイルメッセージ
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
ソースコード
importControl.Applicative(<$>)main::IO()main = dogetLineb <- readLnsolve b <$> map read <$> words <$> getLine >>= mapM_ printsolve::Int->Double->Doublesolve b as = [sum . map diff $ as, sum . map intg $ as]where diff a = a * (fromIntegral b) ** (a-1)intg a | abs (a + 1.0) < 0.01 = log (fromIntegral b)| otherwise = (fromIntegral b) ** (a+1) / (a+1)