結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー HAHAHAHAHAHA
提出日時 2014-12-13 09:35:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 343 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 42,208 KB
最終ジャッジ日時 2024-07-22 16:28:30
合計ジャッジ時間 7,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,728 KB
testcase_01 AC 135 ms
41,552 KB
testcase_02 AC 134 ms
42,016 KB
testcase_03 AC 136 ms
41,700 KB
testcase_04 AC 143 ms
41,864 KB
testcase_05 AC 141 ms
41,604 KB
testcase_06 AC 142 ms
41,668 KB
testcase_07 AC 144 ms
41,668 KB
testcase_08 AC 145 ms
41,964 KB
testcase_09 AC 150 ms
42,024 KB
testcase_10 AC 139 ms
41,652 KB
testcase_11 AC 140 ms
41,724 KB
testcase_12 AC 137 ms
41,392 KB
testcase_13 AC 132 ms
41,908 KB
testcase_14 AC 130 ms
41,780 KB
testcase_15 AC 144 ms
42,208 KB
testcase_16 AC 138 ms
41,500 KB
testcase_17 AC 137 ms
41,808 KB
testcase_18 AC 138 ms
41,648 KB
testcase_19 AC 139 ms
41,972 KB
testcase_20 AC 138 ms
41,828 KB
testcase_21 AC 133 ms
41,588 KB
testcase_22 AC 145 ms
41,824 KB
testcase_23 AC 143 ms
42,092 KB
testcase_24 AC 140 ms
41,720 KB
testcase_25 AC 133 ms
41,404 KB
testcase_26 AC 136 ms
41,532 KB
testcase_27 AC 118 ms
40,632 KB
testcase_28 AC 134 ms
41,768 KB
testcase_29 AC 126 ms
40,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		BigDecimal ans = new BigDecimal("0");
		for(int i=0;i<n;i++){
			String d =sc.next();
			ans=ans.add(new BigDecimal(d));
		}
		System.out.printf("%.10f",ans);
	}
}
0