結果

問題 No.347 微分と積分
ユーザー YamaKasaYamaKasa
提出日時 2018-09-17 03:58:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2024-07-18 07:34:53
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,772 KB
testcase_01 AC 128 ms
41,436 KB
testcase_02 AC 128 ms
42,020 KB
testcase_03 AC 112 ms
41,052 KB
testcase_04 AC 135 ms
41,856 KB
testcase_05 AC 126 ms
41,888 KB
testcase_06 AC 129 ms
41,372 KB
testcase_07 AC 114 ms
42,112 KB
testcase_08 AC 123 ms
42,188 KB
testcase_09 AC 112 ms
41,636 KB
testcase_10 AC 129 ms
41,364 KB
testcase_11 AC 131 ms
41,340 KB
testcase_12 AC 126 ms
41,504 KB
testcase_13 AC 125 ms
41,448 KB
testcase_14 AC 132 ms
41,996 KB
testcase_15 AC 112 ms
41,692 KB
testcase_16 AC 128 ms
41,824 KB
testcase_17 AC 134 ms
41,900 KB
testcase_18 AC 133 ms
41,416 KB
testcase_19 AC 130 ms
41,920 KB
testcase_20 AC 132 ms
41,680 KB
testcase_21 AC 129 ms
41,916 KB
testcase_22 AC 130 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int b = scan.nextInt();
		double[] x = new double[n];
		for(int i = 0; i < n; i++) {
			x[i] = scan.nextDouble();
		}
		scan.close();
		double a1 = 0;
		double a2 = 0;
		for(int i = 0; i < n; i++) {
			a1 += x[i] * Math.pow(b, x[i] - 1);
			if(x[i] == -1.0) {
				a2 += Math.log(b);
			}else {
				a2 += Math.pow(b, x[i] + 1) / (x[i] + 1);
			}

		}
		System.out.println(a1);
		System.out.println(a2);
	}
}
0