結果
問題 | No.347 微分と積分 |
ユーザー | SSRS |
提出日時 | 2020-11-17 07:52:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 509 bytes |
コンパイル時間 | 716 ms |
コンパイル使用メモリ | 79,112 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 01:54:39 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <cmath> using namespace std; int main(){ cout << fixed << setprecision(20); int N; cin >> N; int B; cin >> B; vector<double> a(N); for (int i = 0; i < N; i++){ cin >> a[i]; } double D = 0; for (int i = 0; i < N; i++){ D += a[i] * pow(B, a[i] - 1); } cout << D << endl; double I = 0; for (int i = 0; i < N; i++){ if (a[i] == -1){ I += log(B); } else { I += pow(B, a[i] + 1) / (a[i] + 1); } } cout << I << endl; }