結果

問題 No.347 微分と積分
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-21 20:45:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-11-27 09:29:44
合計ジャッジ時間 6,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,452 KB
testcase_01 AC 124 ms
41,636 KB
testcase_02 AC 131 ms
41,532 KB
testcase_03 AC 128 ms
41,336 KB
testcase_04 AC 126 ms
41,552 KB
testcase_05 AC 114 ms
40,344 KB
testcase_06 AC 129 ms
41,392 KB
testcase_07 AC 131 ms
41,540 KB
testcase_08 AC 118 ms
40,880 KB
testcase_09 AC 130 ms
41,328 KB
testcase_10 AC 146 ms
41,764 KB
testcase_11 AC 126 ms
41,456 KB
testcase_12 AC 131 ms
41,264 KB
testcase_13 AC 123 ms
41,148 KB
testcase_14 AC 130 ms
41,272 KB
testcase_15 AC 127 ms
41,228 KB
testcase_16 AC 128 ms
41,276 KB
testcase_17 AC 132 ms
41,408 KB
testcase_18 AC 120 ms
40,872 KB
testcase_19 AC 129 ms
41,596 KB
testcase_20 AC 113 ms
40,520 KB
testcase_21 AC 128 ms
41,220 KB
testcase_22 AC 129 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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 = new double [N];
        for(int i=0; i<N; i++){
            A[i]=sc.nextDouble();
        }
        double fb=0;
        for(int i=0; i<N; i++){
            fb+=A[i]*(Math.pow(B,A[i]-1));
        }
        System.out.println(fb);
        
        double FB=0;
        for(int i=0; i<N; i++){
            if(A[i]==-1.0){
                FB+=Math.log(B);
            }else{
                FB+=(Math.pow(B,A[i]+1))/(A[i]+1);
            }
        }
        System.out.println(FB);
    }
}
0