結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー jp_stejp_ste
提出日時 2016-05-16 02:02:01
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 444 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 75,508 KB
実行使用メモリ 42,964 KB
最終ジャッジ日時 2024-05-08 18:44:57
合計ジャッジ時間 8,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,724 KB
testcase_01 AC 140 ms
41,776 KB
testcase_02 AC 142 ms
41,852 KB
testcase_03 AC 126 ms
41,108 KB
testcase_04 AC 180 ms
42,708 KB
testcase_05 AC 151 ms
42,288 KB
testcase_06 AC 165 ms
42,848 KB
testcase_07 AC 162 ms
42,496 KB
testcase_08 AC 164 ms
42,116 KB
testcase_09 AC 179 ms
42,964 KB
testcase_10 AC 137 ms
41,616 KB
testcase_11 AC 145 ms
41,636 KB
testcase_12 AC 167 ms
42,212 KB
testcase_13 AC 137 ms
41,932 KB
testcase_14 AC 135 ms
41,888 KB
testcase_15 AC 154 ms
42,092 KB
testcase_16 AC 127 ms
40,896 KB
testcase_17 AC 123 ms
40,992 KB
testcase_18 AC 165 ms
42,360 KB
testcase_19 AC 149 ms
41,888 KB
testcase_20 AC 130 ms
41,384 KB
testcase_21 AC 139 ms
41,672 KB
testcase_22 AC 156 ms
42,516 KB
testcase_23 AC 157 ms
42,376 KB
testcase_24 AC 147 ms
41,844 KB
testcase_25 WA -
testcase_26 AC 129 ms
40,788 KB
testcase_27 AC 141 ms
41,540 KB
testcase_28 AC 139 ms
41,724 KB
testcase_29 AC 154 ms
42,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = Integer.parseInt(scan.next());
            BigDecimal sum = BigDecimal.ZERO;
            for(int i=0; i<n; i++) {
                sum = sum.add(scan.nextBigDecimal());
            }
            System.out.println(sum.setScale(10));
        }
    }
}
0