結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー nCk_cvnCk_cv
提出日時 2016-01-13 06:36:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 54,932 KB
最終ジャッジ日時 2024-07-22 16:31:30
合計ジャッジ時間 6,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,432 KB
testcase_01 AC 125 ms
54,540 KB
testcase_02 AC 127 ms
54,224 KB
testcase_03 AC 127 ms
54,384 KB
testcase_04 AC 155 ms
54,300 KB
testcase_05 AC 149 ms
54,312 KB
testcase_06 AC 152 ms
54,356 KB
testcase_07 AC 146 ms
54,432 KB
testcase_08 AC 149 ms
54,532 KB
testcase_09 AC 159 ms
54,788 KB
testcase_10 AC 119 ms
53,580 KB
testcase_11 AC 135 ms
54,704 KB
testcase_12 AC 136 ms
54,588 KB
testcase_13 AC 126 ms
54,424 KB
testcase_14 AC 124 ms
54,192 KB
testcase_15 AC 168 ms
54,932 KB
testcase_16 AC 120 ms
53,976 KB
testcase_17 AC 128 ms
54,668 KB
testcase_18 AC 143 ms
54,340 KB
testcase_19 AC 132 ms
54,352 KB
testcase_20 AC 130 ms
54,472 KB
testcase_21 AC 114 ms
53,912 KB
testcase_22 AC 131 ms
54,420 KB
testcase_23 AC 148 ms
54,624 KB
testcase_24 AC 135 ms
54,556 KB
testcase_25 AC 127 ms
54,160 KB
testcase_26 AC 111 ms
53,144 KB
testcase_27 AC 137 ms
54,520 KB
testcase_28 AC 126 ms
54,388 KB
testcase_29 AC 135 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		BigDecimal bd = new BigDecimal("0.0");
		for(int i = 0; i < N; i++) {
			bd = bd.add(sc.nextBigDecimal());
		}
		String str = bd.toString();
		int len = str.split("\\.")[1].length();
		for(int i = len; i < 10; i++) {
			str += "0";
		}
		System.out.println(str);
	}
 }
0