結果

問題 No.347 微分と積分
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-02-26 22:54:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 968 bytes
コンパイル時間 3,533 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 54,856 KB
最終ジャッジ日時 2024-09-22 22:29:31
合計ジャッジ時間 8,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
54,196 KB
testcase_01 AC 162 ms
54,856 KB
testcase_02 AC 161 ms
54,392 KB
testcase_03 AC 162 ms
54,628 KB
testcase_04 AC 160 ms
54,460 KB
testcase_05 AC 158 ms
54,480 KB
testcase_06 AC 164 ms
54,668 KB
testcase_07 AC 164 ms
54,640 KB
testcase_08 AC 167 ms
54,440 KB
testcase_09 AC 158 ms
54,488 KB
testcase_10 AC 164 ms
54,096 KB
testcase_11 AC 158 ms
54,484 KB
testcase_12 AC 167 ms
54,356 KB
testcase_13 AC 147 ms
53,644 KB
testcase_14 AC 153 ms
54,120 KB
testcase_15 AC 164 ms
54,528 KB
testcase_16 AC 159 ms
54,572 KB
testcase_17 AC 164 ms
54,416 KB
testcase_18 AC 164 ms
54,496 KB
testcase_19 AC 160 ms
54,608 KB
testcase_20 AC 159 ms
54,584 KB
testcase_21 AC 163 ms
54,360 KB
testcase_22 AC 146 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0347 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int n = in.nextInt();
		int b = in.nextInt();
		double[] a = new double[n];
		for (int i=0; i<n; i++) {
			a[i] = in.nextDouble();
		}
		double x1 = 0, x2 = 0;
		for (int i=0; i<n; i++) {
			x1 += a[i]*Math.pow(b, a[i]-1);
			x2 += a[i] == -1 ? Math.log(b) : Math.pow(b, a[i]+1)/(a[i]+1);
		}

		out.printf("%.10f\n",x1);
		out.printf("%.10f\n",x2);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		dump((end-start) + "ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0