結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kano_townkano_town
提出日時 2014-12-08 23:32:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 3,123 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 42,108 KB
最終ジャッジ日時 2024-07-22 16:27:37
合計ジャッジ時間 7,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,620 KB
testcase_01 AC 111 ms
41,628 KB
testcase_02 AC 108 ms
41,884 KB
testcase_03 AC 111 ms
41,404 KB
testcase_04 AC 118 ms
41,744 KB
testcase_05 AC 106 ms
40,728 KB
testcase_06 AC 121 ms
41,840 KB
testcase_07 AC 122 ms
42,048 KB
testcase_08 AC 119 ms
41,832 KB
testcase_09 AC 126 ms
41,928 KB
testcase_10 AC 104 ms
40,484 KB
testcase_11 AC 110 ms
40,424 KB
testcase_12 AC 105 ms
40,636 KB
testcase_13 AC 101 ms
40,464 KB
testcase_14 AC 104 ms
40,512 KB
testcase_15 AC 119 ms
41,636 KB
testcase_16 AC 111 ms
41,984 KB
testcase_17 AC 105 ms
40,612 KB
testcase_18 AC 121 ms
42,108 KB
testcase_19 AC 110 ms
41,460 KB
testcase_20 AC 106 ms
41,832 KB
testcase_21 AC 103 ms
41,848 KB
testcase_22 AC 115 ms
41,720 KB
testcase_23 AC 120 ms
41,376 KB
testcase_24 AC 117 ms
41,664 KB
testcase_25 AC 99 ms
40,272 KB
testcase_26 AC 113 ms
41,828 KB
testcase_27 AC 96 ms
40,256 KB
testcase_28 AC 105 ms
40,604 KB
testcase_29 AC 106 ms
40,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.BigInteger;
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.printf("%.10f",res);
	}
}
0