結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-08 16:19:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 3,364 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 42,072 KB
最終ジャッジ日時 2024-07-22 16:34:06
合計ジャッジ時間 8,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,240 KB
testcase_01 AC 127 ms
41,604 KB
testcase_02 AC 127 ms
41,500 KB
testcase_03 AC 127 ms
41,584 KB
testcase_04 AC 137 ms
41,544 KB
testcase_05 AC 131 ms
41,508 KB
testcase_06 AC 139 ms
42,072 KB
testcase_07 AC 137 ms
41,680 KB
testcase_08 AC 139 ms
41,648 KB
testcase_09 AC 139 ms
41,688 KB
testcase_10 AC 129 ms
41,452 KB
testcase_11 AC 132 ms
41,832 KB
testcase_12 AC 131 ms
41,876 KB
testcase_13 AC 128 ms
41,492 KB
testcase_14 AC 133 ms
41,548 KB
testcase_15 AC 141 ms
41,908 KB
testcase_16 AC 131 ms
41,452 KB
testcase_17 AC 118 ms
40,316 KB
testcase_18 AC 135 ms
41,640 KB
testcase_19 AC 133 ms
41,424 KB
testcase_20 AC 130 ms
41,968 KB
testcase_21 AC 131 ms
41,540 KB
testcase_22 AC 134 ms
41,552 KB
testcase_23 AC 139 ms
41,860 KB
testcase_24 AC 136 ms
41,520 KB
testcase_25 AC 132 ms
41,716 KB
testcase_26 AC 129 ms
41,756 KB
testcase_27 AC 126 ms
41,784 KB
testcase_28 AC 128 ms
41,584 KB
testcase_29 AC 135 ms
41,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigDecimal;

public class Exercise147{
  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);
    }
    System.out.println(sum.toPlainString());
  }
}
0