結果

問題 No.347 微分と積分
ユーザー ぴろずぴろず
提出日時 2016-02-26 22:37:49
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,576 KB
testcase_01 AC 149 ms
41,808 KB
testcase_02 AC 153 ms
41,780 KB
testcase_03 AC 152 ms
42,360 KB
testcase_04 AC 150 ms
41,660 KB
testcase_05 AC 148 ms
41,616 KB
testcase_06 AC 151 ms
42,036 KB
testcase_07 AC 139 ms
43,856 KB
testcase_08 AC 148 ms
41,584 KB
testcase_09 AC 146 ms
41,996 KB
testcase_10 AC 148 ms
41,584 KB
testcase_11 AC 150 ms
44,628 KB
testcase_12 AC 149 ms
41,740 KB
testcase_13 AC 148 ms
41,668 KB
testcase_14 AC 148 ms
44,748 KB
testcase_15 AC 151 ms
41,776 KB
testcase_16 AC 149 ms
41,916 KB
testcase_17 AC 148 ms
41,788 KB
testcase_18 AC 152 ms
41,584 KB
testcase_19 AC 151 ms
41,576 KB
testcase_20 AC 148 ms
44,688 KB
testcase_21 AC 150 ms
41,912 KB
testcase_22 AC 146 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

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