結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー 37zigen37zigen
提出日時 2020-03-22 04:57:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 909 bytes
コンパイル時間 2,814 ms
コンパイル使用メモリ 87,676 KB
実行使用メモリ 42,108 KB
最終ジャッジ日時 2024-07-22 16:49:08
合計ジャッジ時間 7,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,576 KB
testcase_01 AC 124 ms
40,604 KB
testcase_02 AC 122 ms
40,404 KB
testcase_03 AC 134 ms
41,704 KB
testcase_04 AC 140 ms
41,844 KB
testcase_05 AC 138 ms
41,512 KB
testcase_06 AC 140 ms
41,616 KB
testcase_07 AC 145 ms
42,108 KB
testcase_08 AC 147 ms
41,836 KB
testcase_09 AC 150 ms
41,564 KB
testcase_10 AC 122 ms
40,552 KB
testcase_11 AC 141 ms
41,640 KB
testcase_12 AC 139 ms
41,644 KB
testcase_13 AC 137 ms
41,384 KB
testcase_14 AC 137 ms
41,368 KB
testcase_15 AC 141 ms
41,868 KB
testcase_16 AC 138 ms
41,600 KB
testcase_17 AC 132 ms
41,728 KB
testcase_18 AC 143 ms
41,540 KB
testcase_19 AC 141 ms
41,868 KB
testcase_20 AC 137 ms
41,556 KB
testcase_21 AC 133 ms
41,600 KB
testcase_22 AC 139 ms
41,812 KB
testcase_23 AC 144 ms
41,928 KB
testcase_24 AC 141 ms
41,584 KB
testcase_25 AC 134 ms
41,924 KB
testcase_26 AC 139 ms
41,716 KB
testcase_27 AC 136 ms
41,392 KB
testcase_28 AC 135 ms
41,472 KB
testcase_29 AC 139 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		BigDecimal ret=new BigDecimal(0);
		for(int i=0;i<N;++i) {
			BigDecimal a=new BigDecimal(sc.next());
			ret=ret.add(a);
		}
		String str=ret.toString();
		int p=0;
		while(p<str.length()&&str.charAt(p)!='.')++p;
		if(p!=str.length()) {
			int n=str.length();
			for(int i=0;i<10-(n-1-p);++i) str=str+"0";
		}else {
			str=str+".";
			for(int i=0;i<10;++i)str=str+"0";
		}
		System.out.println(str);
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0