結果

問題 No.347 微分と積分
ユーザー Mcpu3Mcpu3
提出日時 2018-09-22 15:31:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 55,492 KB
最終ジャッジ日時 2024-07-18 08:58:46
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,344 KB
testcase_01 AC 161 ms
55,492 KB
testcase_02 AC 144 ms
54,772 KB
testcase_03 AC 158 ms
55,224 KB
testcase_04 AC 176 ms
55,064 KB
testcase_05 AC 167 ms
55,104 KB
testcase_06 AC 168 ms
55,108 KB
testcase_07 AC 162 ms
55,180 KB
testcase_08 AC 163 ms
55,048 KB
testcase_09 AC 160 ms
55,276 KB
testcase_10 AC 152 ms
55,320 KB
testcase_11 AC 156 ms
55,076 KB
testcase_12 AC 160 ms
55,084 KB
testcase_13 AC 175 ms
55,340 KB
testcase_14 AC 177 ms
55,384 KB
testcase_15 AC 161 ms
55,032 KB
testcase_16 AC 165 ms
55,340 KB
testcase_17 AC 167 ms
55,200 KB
testcase_18 AC 160 ms
54,520 KB
testcase_19 AC 162 ms
55,036 KB
testcase_20 AC 173 ms
55,220 KB
testcase_21 AC 153 ms
55,048 KB
testcase_22 AC 163 ms
54,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        double b,a,f=0,F=0;
        int n=sc.nextInt();
        b=sc.nextDouble();
        for(int i=0;i<n;++i){
            a=sc.nextDouble();
            f+=a*Math.pow(b,a-1);
            if(a==-1.)F+=Math.log(Math.abs(b));
            else F+=1/(a+1)*Math.pow(b,a+1);
        }
        sc.close();
        System.out.print(f+"\n"+F);
    }
}
0