結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー jp_stejp_ste
提出日時 2021-01-31 21:05:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 56,896 KB
最終ジャッジ日時 2024-06-29 11:55:04
合計ジャッジ時間 6,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,620 KB
testcase_01 AC 130 ms
54,208 KB
testcase_02 AC 130 ms
54,256 KB
testcase_03 AC 130 ms
54,196 KB
testcase_04 AC 156 ms
54,672 KB
testcase_05 AC 143 ms
54,556 KB
testcase_06 AC 136 ms
54,420 KB
testcase_07 AC 143 ms
54,348 KB
testcase_08 AC 142 ms
54,272 KB
testcase_09 AC 163 ms
54,704 KB
testcase_10 AC 113 ms
53,736 KB
testcase_11 AC 132 ms
54,512 KB
testcase_12 AC 127 ms
54,292 KB
testcase_13 AC 114 ms
53,612 KB
testcase_14 AC 120 ms
54,332 KB
testcase_15 AC 133 ms
54,388 KB
testcase_16 AC 110 ms
53,756 KB
testcase_17 AC 121 ms
53,920 KB
testcase_18 AC 158 ms
54,324 KB
testcase_19 AC 124 ms
54,516 KB
testcase_20 AC 118 ms
54,076 KB
testcase_21 AC 123 ms
54,080 KB
testcase_22 AC 135 ms
54,560 KB
testcase_23 AC 141 ms
54,492 KB
testcase_24 AC 138 ms
54,372 KB
testcase_25 WA -
testcase_26 AC 131 ms
54,596 KB
testcase_27 AC 135 ms
54,176 KB
testcase_28 AC 127 ms
54,056 KB
testcase_29 AC 153 ms
54,240 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