結果

問題 No.347 微分と積分
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-22 15:03:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-09-19 03:36:29
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,128 KB
testcase_01 AC 118 ms
40,984 KB
testcase_02 AC 130 ms
41,416 KB
testcase_03 AC 113 ms
40,736 KB
testcase_04 AC 132 ms
41,560 KB
testcase_05 AC 127 ms
41,708 KB
testcase_06 AC 130 ms
41,552 KB
testcase_07 AC 134 ms
41,648 KB
testcase_08 AC 127 ms
41,664 KB
testcase_09 AC 114 ms
40,736 KB
testcase_10 AC 114 ms
40,656 KB
testcase_11 AC 124 ms
41,436 KB
testcase_12 AC 114 ms
40,636 KB
testcase_13 AC 128 ms
41,404 KB
testcase_14 AC 169 ms
40,824 KB
testcase_15 AC 116 ms
41,080 KB
testcase_16 AC 115 ms
41,392 KB
testcase_17 AC 123 ms
41,524 KB
testcase_18 AC 128 ms
41,644 KB
testcase_19 AC 124 ms
41,644 KB
testcase_20 AC 111 ms
40,388 KB
testcase_21 AC 121 ms
41,396 KB
testcase_22 AC 129 ms
41,136 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.nextDouble();
    double[] a = new double[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextDouble();
    }
    double ans1 = 0;
    double ans2 = 0;
    for(int i = 0; i < n; i++) {
      if(a[i] != 0) {
        ans1 += (a[i] * (double)Math.pow(b, a[i] - 1));
      }
      if(a[i] == -1) {
        ans2 += (double)Math.log(b);
      } else {
        ans2 += ((1 / (a[i] + 1)) * (double)Math.pow(b, a[i] + 1));
      }
    }
    System.out.println(ans1);
    System.out.println(ans2);
  }
}
0