結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kano_townkano_town
提出日時 2014-12-08 23:34:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 3,711 ms
コンパイル使用メモリ 75,296 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-07-22 16:28:07
合計ジャッジ時間 8,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,544 KB
testcase_01 AC 132 ms
41,804 KB
testcase_02 AC 135 ms
41,608 KB
testcase_03 AC 134 ms
41,416 KB
testcase_04 AC 142 ms
41,712 KB
testcase_05 AC 126 ms
40,500 KB
testcase_06 AC 144 ms
41,996 KB
testcase_07 AC 145 ms
41,504 KB
testcase_08 AC 140 ms
41,964 KB
testcase_09 AC 144 ms
41,940 KB
testcase_10 AC 127 ms
41,800 KB
testcase_11 AC 136 ms
41,424 KB
testcase_12 AC 139 ms
41,576 KB
testcase_13 AC 135 ms
41,932 KB
testcase_14 AC 135 ms
41,760 KB
testcase_15 AC 143 ms
41,920 KB
testcase_16 AC 133 ms
41,740 KB
testcase_17 AC 131 ms
41,524 KB
testcase_18 AC 139 ms
41,772 KB
testcase_19 AC 137 ms
41,628 KB
testcase_20 AC 118 ms
40,100 KB
testcase_21 AC 132 ms
41,248 KB
testcase_22 AC 135 ms
41,592 KB
testcase_23 AC 139 ms
41,628 KB
testcase_24 AC 137 ms
41,860 KB
testcase_25 AC 138 ms
41,824 KB
testcase_26 AC 119 ms
40,184 KB
testcase_27 AC 132 ms
41,680 KB
testcase_28 AC 135 ms
41,760 KB
testcase_29 AC 125 ms
40,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.DecimalFormat;
import java.util.Scanner;

public class Yukicoder81 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		BigDecimal res = new BigDecimal(BigInteger.ZERO);
		for (int i = 0; i < n; i++) res = res.add(new BigDecimal(sc.next()));
		System.out.println(new DecimalFormat("0.0000000000").format(res));
	}
}
0