結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 16:59:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-07-22 16:34:59
合計ジャッジ時間 7,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,512 KB
testcase_01 AC 144 ms
54,268 KB
testcase_02 AC 143 ms
54,236 KB
testcase_03 AC 145 ms
54,144 KB
testcase_04 AC 152 ms
54,296 KB
testcase_05 AC 154 ms
54,340 KB
testcase_06 AC 154 ms
54,316 KB
testcase_07 AC 156 ms
54,104 KB
testcase_08 AC 157 ms
54,276 KB
testcase_09 AC 160 ms
53,888 KB
testcase_10 AC 148 ms
54,364 KB
testcase_11 AC 152 ms
54,144 KB
testcase_12 AC 149 ms
54,256 KB
testcase_13 AC 145 ms
54,240 KB
testcase_14 AC 144 ms
54,344 KB
testcase_15 AC 152 ms
54,252 KB
testcase_16 AC 145 ms
54,160 KB
testcase_17 AC 147 ms
54,044 KB
testcase_18 AC 159 ms
54,232 KB
testcase_19 AC 153 ms
54,072 KB
testcase_20 AC 148 ms
54,572 KB
testcase_21 AC 146 ms
54,368 KB
testcase_22 AC 150 ms
53,892 KB
testcase_23 AC 155 ms
54,436 KB
testcase_24 AC 152 ms
54,116 KB
testcase_25 AC 143 ms
54,056 KB
testcase_26 AC 142 ms
54,324 KB
testcase_27 AC 146 ms
54,516 KB
testcase_28 AC 143 ms
54,084 KB
testcase_29 AC 153 ms
54,380 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 sum = new BigDecimal("0.0000000000");
        for(int i=0; i<N; i++){
            BigDecimal num = new BigDecimal(sc.next());
            sum = sum.add(num);
        }
        String ans=sum.toPlainString();
        System.out.println(ans);
    }
}
0