結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー Mcpu3Mcpu3
提出日時 2019-03-19 15:11:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 2,938 ms
コンパイル使用メモリ 75,680 KB
実行使用メモリ 54,744 KB
最終ジャッジ日時 2024-07-22 16:46:18
合計ジャッジ時間 7,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,052 KB
testcase_01 AC 105 ms
54,744 KB
testcase_02 AC 118 ms
54,344 KB
testcase_03 AC 116 ms
53,844 KB
testcase_04 AC 134 ms
54,632 KB
testcase_05 AC 112 ms
53,248 KB
testcase_06 AC 125 ms
54,484 KB
testcase_07 AC 125 ms
54,448 KB
testcase_08 AC 124 ms
54,284 KB
testcase_09 AC 127 ms
54,372 KB
testcase_10 AC 116 ms
54,220 KB
testcase_11 AC 128 ms
54,556 KB
testcase_12 AC 112 ms
53,472 KB
testcase_13 AC 120 ms
54,648 KB
testcase_14 AC 117 ms
54,360 KB
testcase_15 AC 123 ms
54,168 KB
testcase_16 AC 106 ms
53,460 KB
testcase_17 AC 108 ms
53,132 KB
testcase_18 AC 128 ms
54,264 KB
testcase_19 AC 128 ms
54,620 KB
testcase_20 AC 119 ms
54,672 KB
testcase_21 AC 121 ms
54,404 KB
testcase_22 AC 110 ms
53,224 KB
testcase_23 AC 128 ms
54,652 KB
testcase_24 AC 124 ms
54,060 KB
testcase_25 AC 111 ms
53,120 KB
testcase_26 AC 121 ms
53,144 KB
testcase_27 AC 109 ms
53,212 KB
testcase_28 AC 118 ms
54,404 KB
testcase_29 AC 113 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

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 tmp = sc.next();
			BigDecimal A = new BigDecimal(tmp);
			ans = ans.add(A);
		}
		sc.close();
		System.out.print(ans.toString().format("%.10f", ans));
	}
}
0