結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー jp_stejp_ste
提出日時 2021-01-31 21:13:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 3,719 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 56,120 KB
最終ジャッジ日時 2024-07-22 16:55:48
合計ジャッジ時間 6,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,568 KB
testcase_01 AC 138 ms
54,492 KB
testcase_02 AC 145 ms
54,380 KB
testcase_03 AC 127 ms
54,324 KB
testcase_04 AC 146 ms
54,512 KB
testcase_05 AC 133 ms
54,260 KB
testcase_06 AC 145 ms
54,368 KB
testcase_07 AC 137 ms
54,376 KB
testcase_08 AC 148 ms
54,216 KB
testcase_09 AC 158 ms
54,380 KB
testcase_10 AC 121 ms
53,960 KB
testcase_11 AC 150 ms
54,308 KB
testcase_12 AC 152 ms
54,188 KB
testcase_13 AC 126 ms
53,756 KB
testcase_14 AC 128 ms
54,188 KB
testcase_15 AC 153 ms
54,444 KB
testcase_16 AC 134 ms
54,476 KB
testcase_17 AC 122 ms
54,368 KB
testcase_18 AC 163 ms
56,120 KB
testcase_19 AC 132 ms
54,380 KB
testcase_20 AC 142 ms
54,432 KB
testcase_21 AC 131 ms
54,308 KB
testcase_22 AC 152 ms
54,628 KB
testcase_23 AC 155 ms
54,352 KB
testcase_24 AC 133 ms
54,156 KB
testcase_25 AC 123 ms
54,252 KB
testcase_26 AC 130 ms
54,160 KB
testcase_27 AC 132 ms
54,544 KB
testcase_28 AC 126 ms
54,288 KB
testcase_29 AC 155 ms
54,468 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).toPlainString());
        }
    }
}
0