結果

問題 No.347 微分と積分
ユーザー htensaihtensai
提出日時 2019-11-21 18:11:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 619 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,732 KB
最終ジャッジ日時 2024-10-10 19:40:09
合計ジャッジ時間 6,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,380 KB
testcase_01 AC 122 ms
41,344 KB
testcase_02 AC 133 ms
41,528 KB
testcase_03 AC 132 ms
40,940 KB
testcase_04 AC 134 ms
41,732 KB
testcase_05 AC 134 ms
41,620 KB
testcase_06 AC 142 ms
41,576 KB
testcase_07 AC 134 ms
41,580 KB
testcase_08 AC 144 ms
41,320 KB
testcase_09 AC 146 ms
41,496 KB
testcase_10 AC 120 ms
41,684 KB
testcase_11 AC 125 ms
41,532 KB
testcase_12 AC 141 ms
41,332 KB
testcase_13 AC 148 ms
41,692 KB
testcase_14 AC 139 ms
41,544 KB
testcase_15 AC 133 ms
41,548 KB
testcase_16 AC 138 ms
41,332 KB
testcase_17 AC 143 ms
41,600 KB
testcase_18 AC 143 ms
41,688 KB
testcase_19 AC 140 ms
41,420 KB
testcase_20 AC 146 ms
41,240 KB
testcase_21 AC 138 ms
41,368 KB
testcase_22 AC 134 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double b = sc.nextInt();
		double[] arr = new double[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextDouble();
		}
		double x1 = 0;
		for (int i = 0; i < n; i++) {
		    x1 += arr[i] * Math.pow(b, arr[i] - 1);
		}
		System.out.println(x1);
		double x2 = 0;
		for (int i = 0; i < n; i++) {
		    if (arr[i] == -1.0) {
		        x2 += Math.log(b);
		    } else {
		        x2 += Math.pow(b, arr[i] + 1) / (arr[i] + 1);
		    }
		}
		System.out.println(x2);
	}
}
0