結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー リチウムリチウム
提出日時 2014-11-27 23:55:09
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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