結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー htensaihtensai
提出日時 2019-12-26 18:07:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 75,776 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-07-22 16:48:16
合計ジャッジ時間 8,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,492 KB
testcase_01 AC 148 ms
54,260 KB
testcase_02 AC 148 ms
54,276 KB
testcase_03 AC 149 ms
54,192 KB
testcase_04 AC 152 ms
54,352 KB
testcase_05 AC 147 ms
54,344 KB
testcase_06 AC 152 ms
54,284 KB
testcase_07 AC 153 ms
54,080 KB
testcase_08 AC 154 ms
54,432 KB
testcase_09 AC 156 ms
54,180 KB
testcase_10 AC 147 ms
54,312 KB
testcase_11 AC 150 ms
54,084 KB
testcase_12 AC 155 ms
54,272 KB
testcase_13 AC 145 ms
53,940 KB
testcase_14 AC 144 ms
53,952 KB
testcase_15 AC 152 ms
54,316 KB
testcase_16 AC 147 ms
54,664 KB
testcase_17 AC 145 ms
54,284 KB
testcase_18 AC 154 ms
54,084 KB
testcase_19 AC 152 ms
54,092 KB
testcase_20 AC 142 ms
54,120 KB
testcase_21 AC 146 ms
54,092 KB
testcase_22 AC 151 ms
54,028 KB
testcase_23 AC 154 ms
54,500 KB
testcase_24 AC 152 ms
53,956 KB
testcase_25 AC 149 ms
54,384 KB
testcase_26 AC 146 ms
54,000 KB
testcase_27 AC 144 ms
54,388 KB
testcase_28 AC 143 ms
54,208 KB
testcase_29 AC 152 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        BigDecimal ans = BigDecimal.ZERO;
        for (int i = 0; i < n; i++) {
            ans = ans.add(new BigDecimal(sc.next()));
        }
        java.text.DecimalFormat df = new java.text.DecimalFormat("#0.0000000000");
        System.out.println(df.format(ans));
    }
    
}
0