結果
| 問題 | 
                            No.347 微分と積分
                             | 
                    
| コンテスト | |
| ユーザー | 
                             femto
                         | 
                    
| 提出日時 | 2016-08-20 18:37:35 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 3 ms / 5,000 ms | 
| コード長 | 661 bytes | 
| コンパイル時間 | 727 ms | 
| コンパイル使用メモリ | 81,800 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-07 21:35:54 | 
| 合計ジャッジ時間 | 1,568 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 | 
ソースコード
#include <iostream>
#include <fstream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
#include <cmath>
using namespace std;
double diff(double a, double x) {
	return pow(x, a - 1.0) * a;
}
double inte(double a, double x) {
	if(a == -1.0) {
		return log(x);
	}
	return pow(x, a + 1.0) / (a + 1.0);
}
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N;
	double B;
	cin >> N >> B;
	double ans1 = 0, ans2 = 0;
	for(int i = 0; i < N; i++) {
		double a;
		cin >> a;
		ans1 += diff(a, B);
		ans2 += inte(a, B);
	}
	cout << setprecision(15) << ans1 << endl;
	cout << setprecision(15) << ans2 << endl;
}
            
            
            
        
            
femto