結果
問題 | No.347 微分と積分 |
ユーザー | ldsyb |
提出日時 | 2016-03-03 19:38:40 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 550 ms |
コンパイル使用メモリ | 66,448 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 13:52:44 |
合計ジャッジ時間 | 1,333 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main(){ double f = 0,F = 0; int n,b; cin >> n >> b; double a[n]; for(int i = 0;i < n;i++) cin >> a[i]; for(int i = 0;i < n;i++){ f += a[i] * pow(b,a[i] - 1); if(a[i] != -1) F += 1 / (a[i] + 1) * pow(b,a[i] + 1); else F += log(b); } cout << fixed << setprecision(10) << f << endl << F << endl; }