結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-18 22:18:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 75,288 KB
実行使用メモリ 42,136 KB
最終ジャッジ日時 2024-07-22 16:29:34
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,444 KB
testcase_01 AC 108 ms
41,856 KB
testcase_02 AC 107 ms
40,628 KB
testcase_03 AC 103 ms
41,624 KB
testcase_04 AC 124 ms
41,576 KB
testcase_05 AC 111 ms
40,568 KB
testcase_06 AC 120 ms
41,700 KB
testcase_07 AC 119 ms
41,804 KB
testcase_08 AC 123 ms
41,840 KB
testcase_09 AC 126 ms
42,088 KB
testcase_10 AC 100 ms
41,648 KB
testcase_11 AC 118 ms
41,764 KB
testcase_12 AC 106 ms
40,652 KB
testcase_13 AC 113 ms
41,612 KB
testcase_14 AC 105 ms
41,696 KB
testcase_15 AC 123 ms
41,952 KB
testcase_16 AC 114 ms
41,488 KB
testcase_17 AC 117 ms
41,972 KB
testcase_18 AC 119 ms
42,136 KB
testcase_19 AC 106 ms
41,844 KB
testcase_20 AC 112 ms
41,448 KB
testcase_21 AC 108 ms
41,272 KB
testcase_22 AC 115 ms
41,664 KB
testcase_23 AC 120 ms
41,628 KB
testcase_24 AC 109 ms
40,692 KB
testcase_25 AC 104 ms
40,584 KB
testcase_26 AC 114 ms
41,832 KB
testcase_27 AC 110 ms
40,428 KB
testcase_28 AC 101 ms
40,532 KB
testcase_29 AC 102 ms
40,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigDecimal;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        BigDecimal total= new BigDecimal("0.0000000000");
        BigDecimal[] a = new BigDecimal[n];
        for(int i=0; i<n; i++){
            a[i]= new BigDecimal(koko.next());
            total = total.add(a[i]);
        }
        System.out.printf("%.10f",total);
    }
}
0