結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー リチウムリチウム
提出日時 2014-11-27 23:55:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 712 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 43,824 KB
最終ジャッジ日時 2024-07-22 16:25:30
合計ジャッジ時間 6,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,056 KB
testcase_01 AC 110 ms
41,076 KB
testcase_02 AC 121 ms
40,920 KB
testcase_03 AC 112 ms
41,264 KB
testcase_04 AC 144 ms
42,556 KB
testcase_05 AC 132 ms
41,764 KB
testcase_06 AC 139 ms
41,924 KB
testcase_07 AC 140 ms
42,672 KB
testcase_08 AC 144 ms
42,788 KB
testcase_09 AC 140 ms
41,936 KB
testcase_10 AC 112 ms
41,088 KB
testcase_11 AC 128 ms
42,004 KB
testcase_12 AC 133 ms
42,412 KB
testcase_13 AC 121 ms
40,984 KB
testcase_14 AC 120 ms
41,452 KB
testcase_15 AC 146 ms
42,908 KB
testcase_16 AC 122 ms
41,932 KB
testcase_17 AC 118 ms
41,212 KB
testcase_18 AC 134 ms
41,984 KB
testcase_19 AC 125 ms
41,816 KB
testcase_20 AC 120 ms
41,580 KB
testcase_21 AC 120 ms
41,644 KB
testcase_22 AC 128 ms
43,824 KB
testcase_23 AC 142 ms
43,040 KB
testcase_24 AC 131 ms
41,924 KB
testcase_25 AC 121 ms
40,940 KB
testcase_26 AC 125 ms
41,676 KB
testcase_27 AC 109 ms
40,560 KB
testcase_28 AC 110 ms
41,716 KB
testcase_29 AC 127 ms
41,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;
import java.math.BigDecimal;

public 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++){
		  BigDecimal x=sc.nextBigDecimal();
		  ans=ans.add(x);
	  }
	  String S=String.valueOf(ans);
	  char s[]=S.toCharArray();
	  boolean ten=false;
	  int syousuu=0;
	  for(int i=0;i<s.length;i++){
		  if(ten)syousuu++;
		  if(s[i]=='.')ten=true;
	  }
	  System.out.print(ans);
	  if(!ten)System.out.print(".");
	  for(int i=0;i<10-syousuu;i++){
		  System.out.print(0);
	  }
	  System.out.println();
  }}
0