結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,096 KB
testcase_01 AC 144 ms
41,516 KB
testcase_02 AC 145 ms
41,588 KB
testcase_03 AC 144 ms
41,784 KB
testcase_04 AC 166 ms
42,292 KB
testcase_05 AC 157 ms
41,884 KB
testcase_06 AC 174 ms
42,120 KB
testcase_07 AC 175 ms
41,904 KB
testcase_08 AC 163 ms
42,132 KB
testcase_09 AC 180 ms
42,284 KB
testcase_10 AC 126 ms
40,876 KB
testcase_11 AC 157 ms
41,636 KB
testcase_12 AC 152 ms
41,724 KB
testcase_13 AC 138 ms
40,712 KB
testcase_14 AC 137 ms
40,820 KB
testcase_15 AC 164 ms
42,560 KB
testcase_16 AC 147 ms
41,736 KB
testcase_17 AC 140 ms
41,512 KB
testcase_18 AC 169 ms
41,788 KB
testcase_19 AC 157 ms
41,808 KB
testcase_20 AC 146 ms
41,492 KB
testcase_21 AC 126 ms
41,020 KB
testcase_22 AC 142 ms
41,564 KB
testcase_23 AC 163 ms
42,444 KB
testcase_24 AC 157 ms
41,916 KB
testcase_25 WA -
testcase_26 AC 131 ms
40,628 KB
testcase_27 AC 148 ms
41,716 KB
testcase_28 AC 150 ms
41,544 KB
testcase_29 AC 151 ms
41,836 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