結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,548 KB
testcase_01 AC 105 ms
41,600 KB
testcase_02 AC 117 ms
41,868 KB
testcase_03 AC 115 ms
41,836 KB
testcase_04 AC 121 ms
41,660 KB
testcase_05 AC 108 ms
41,548 KB
testcase_06 AC 121 ms
41,600 KB
testcase_07 AC 118 ms
41,492 KB
testcase_08 AC 124 ms
41,808 KB
testcase_09 AC 125 ms
41,728 KB
testcase_10 AC 119 ms
41,740 KB
testcase_11 AC 104 ms
41,544 KB
testcase_12 AC 117 ms
41,392 KB
testcase_13 AC 105 ms
41,580 KB
testcase_14 AC 113 ms
41,776 KB
testcase_15 AC 122 ms
41,728 KB
testcase_16 AC 105 ms
41,508 KB
testcase_17 AC 116 ms
40,220 KB
testcase_18 AC 126 ms
41,432 KB
testcase_19 AC 106 ms
42,000 KB
testcase_20 AC 116 ms
41,668 KB
testcase_21 AC 116 ms
41,548 KB
testcase_22 AC 118 ms
41,264 KB
testcase_23 AC 128 ms
41,900 KB
testcase_24 AC 123 ms
41,624 KB
testcase_25 AC 115 ms
41,672 KB
testcase_26 AC 117 ms
40,504 KB
testcase_27 AC 117 ms
41,564 KB
testcase_28 AC 116 ms
41,532 KB
testcase_29 AC 123 ms
41,688 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);
		}
		System.out.println(ret.setScale(10).toPlainString());
	}


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

}
0