結果

問題 No.347 微分と積分
ユーザー ぴろずぴろず
提出日時 2016-02-26 22:37:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 44,748 KB
最終ジャッジ日時 2024-09-22 22:00:50
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

package no347;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int b = sc.nextInt();
		double derivative = 0;
		double integral = 0;
		for(int i=0;i<n;i++) {
			double a = sc.nextDouble();
			derivative += a * Math.pow(b, a - 1);
			if (a == -1) {
				integral += Math.log(b);
			}else{
				integral += Math.pow(b, a + 1) / (a + 1);
			}
		}
		pd(derivative);
		pd(integral);
	}
	
	public static void pd(double d) {
		System.out.printf("%.5f\n",d);
	}

}
0