結果

問題 No.347 微分と積分
ユーザー tonyu0tonyu0
提出日時 2020-05-17 12:15:27
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 1,283 ms
コンパイル使用メモリ 90,480 KB
最終ジャッジ日時 2025-01-10 12:41:21
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <cmath>
using namespace std;
using ll = long long;

int n;
double b, a[15];

int main()
{
  cin >> n >> b;
  for (int i = 0; i < n; ++i)
    cin >> a[i];

  double bibun = 0.0, sekibun = 0.0;
  for (int i = 0; i < n; ++i)
  {
    bibun += a[i] * pow(b, a[i] - 1.0);
    if (a[i] == -1.0)
      sekibun += log(b);
    else
      sekibun += 1.0 / (a[i] + 1.0) * pow(b, a[i] + 1.0);
  }
  cout << fixed << setprecision(10) << bibun << endl
       << sekibun << endl;
  return 0;
}
0