結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー holegumaholeguma
提出日時 2015-08-14 15:22:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 76,032 KB
実行使用メモリ 54,816 KB
最終ジャッジ日時 2024-07-22 16:30:33
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,288 KB
testcase_01 AC 142 ms
54,172 KB
testcase_02 AC 143 ms
54,128 KB
testcase_03 AC 139 ms
54,180 KB
testcase_04 AC 139 ms
54,816 KB
testcase_05 AC 143 ms
54,280 KB
testcase_06 AC 144 ms
54,512 KB
testcase_07 AC 142 ms
54,064 KB
testcase_08 AC 147 ms
54,288 KB
testcase_09 AC 146 ms
54,012 KB
testcase_10 AC 148 ms
54,276 KB
testcase_11 AC 153 ms
54,156 KB
testcase_12 AC 149 ms
54,552 KB
testcase_13 AC 147 ms
54,452 KB
testcase_14 AC 149 ms
54,592 KB
testcase_15 AC 147 ms
54,032 KB
testcase_16 AC 146 ms
53,792 KB
testcase_17 AC 146 ms
54,252 KB
testcase_18 AC 145 ms
54,248 KB
testcase_19 AC 141 ms
54,480 KB
testcase_20 AC 146 ms
53,936 KB
testcase_21 AC 143 ms
54,140 KB
testcase_22 AC 146 ms
54,252 KB
testcase_23 AC 142 ms
54,612 KB
testcase_24 AC 147 ms
54,624 KB
testcase_25 AC 147 ms
54,560 KB
testcase_26 AC 143 ms
54,668 KB
testcase_27 AC 142 ms
54,252 KB
testcase_28 AC 145 ms
54,060 KB
testcase_29 AC 143 ms
54,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
BigDecimal x=new BigDecimal("0.0");
while((line=br.readLine())!=null&&!line.isEmpty()){
int n=Integer.parseInt(line);
for(int i=0;i<n;i++){
BigDecimal y=new BigDecimal(br.readLine());
x=x.add(y);
}
x=x.setScale(10,RoundingMode.HALF_UP);
out.printf("%.10f",x);
out.flush();
}
}
}
0