結果

問題 No.347 微分と積分
ユーザー mizunomi32mizunomi32
提出日時 2016-02-29 22:06:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-09-24 12:55:03
合計ジャッジ時間 7,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,340 KB
testcase_01 AC 138 ms
54,264 KB
testcase_02 AC 145 ms
54,308 KB
testcase_03 AC 128 ms
53,648 KB
testcase_04 AC 149 ms
54,268 KB
testcase_05 AC 140 ms
54,112 KB
testcase_06 WA -
testcase_07 AC 150 ms
54,292 KB
testcase_08 AC 140 ms
54,232 KB
testcase_09 AC 141 ms
54,428 KB
testcase_10 AC 140 ms
54,220 KB
testcase_11 AC 137 ms
54,148 KB
testcase_12 AC 140 ms
54,372 KB
testcase_13 AC 144 ms
54,356 KB
testcase_14 WA -
testcase_15 AC 152 ms
54,348 KB
testcase_16 AC 151 ms
54,324 KB
testcase_17 AC 141 ms
54,484 KB
testcase_18 AC 139 ms
54,244 KB
testcase_19 AC 141 ms
54,352 KB
testcase_20 AC 139 ms
54,372 KB
testcase_21 AC 138 ms
54,216 KB
testcase_22 AC 138 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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