結果
問題 | No.347 微分と積分 |
ユーザー | むらため |
提出日時 | 2019-01-18 14:51:57 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 3,839 ms |
コンパイル使用メモリ | 66,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 10:17:02 |
合計ジャッジ時間 | 4,587 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import sequtils,strutils,algorithm,math template get*():string = stdin.readLine().strip() let n = get().parseInt() let b = get().parseInt().float let A = get().split().map(parseFloat) proc integral(a:float):float = if abs(1 + a) >= 1e-5 : return 1 / (1 + a) * b.pow(1+a) return b.ln() echo A.mapIt(it * b.pow(it-1)).sum() echo A.map(integral).sum()