結果

問題 No.347 微分と積分
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:09:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 3,806 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-11-22 12:16:42
合計ジャッジ時間 8,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,356 KB
testcase_01 AC 158 ms
54,260 KB
testcase_02 AC 162 ms
54,364 KB
testcase_03 AC 157 ms
54,348 KB
testcase_04 AC 157 ms
54,352 KB
testcase_05 AC 157 ms
54,108 KB
testcase_06 AC 156 ms
54,228 KB
testcase_07 AC 155 ms
54,216 KB
testcase_08 AC 159 ms
54,296 KB
testcase_09 AC 159 ms
54,084 KB
testcase_10 AC 155 ms
54,300 KB
testcase_11 AC 155 ms
54,504 KB
testcase_12 AC 156 ms
54,220 KB
testcase_13 AC 155 ms
54,156 KB
testcase_14 AC 171 ms
54,136 KB
testcase_15 AC 157 ms
53,960 KB
testcase_16 AC 159 ms
54,376 KB
testcase_17 AC 179 ms
53,992 KB
testcase_18 AC 171 ms
54,160 KB
testcase_19 AC 168 ms
54,472 KB
testcase_20 AC 167 ms
54,360 KB
testcase_21 AC 160 ms
54,220 KB
testcase_22 AC 165 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		double x = sc.nextDouble(), t, ans1 = 0, ans2 = 0;
		for (int i = 0; i < n; i++) {
			t = sc.nextDouble();
			ans1 += t * Math.pow(x, t - 1);
			if (t == -1) {
				ans2 += Math.log(x);
			} else {
				ans2 += Math.pow(x, t + 1) / (t + 1);
			}
		}
		System.out.println(ans1);
		System.out.println(ans2);
	}
}
0