結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー dddai1206_c
提出日時 2014-11-28 00:56:09
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 75,404 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-03 09:55:37
合計ジャッジ時間 2,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
using namespace std;
const long long k = 10;
void make_0(string &a){
  for(int i = 0;i < a.size();i++){
	if(a[i] == '.'){
	  for(int j = a.size() - i;j <= 10;j++){
		a = a + "0";
	  }
	  return;
	}
  }
  a += ".";
  for(int i = 0;i < 10;i++){
	a = a +  "0";
  }
}
string get_d(string a){
  
  string res = "";
  for(int i = 0;i < a.size();i++){
	if(a[i] == '.'){
	  for(int j = i+1;j < a.size();j++){
		res = res + a[j];
	  }
	  break;
	}
  }
  return a[0] == '-' ? "-" + res: res;
}

int main(){
   // string tmp;
   // cin >> tmp;
   // make_0(tmp);
   // cout << tmp << endl;
  
  long long n;
  cin >> n;
  long long ji = 0;
  long long sh = 0;
  for(int i = 0;i < n;i++){
	string a;
	cin >> a;
	make_0(a);
	ji += stoll(a);
	sh += stoll(get_d(a));
  }


  ji+= (long long)(sh/pow(10,10));
  sh = sh%(long long)pow(10,10);
  string sh_s = to_string(sh);
  for(int i = sh_s.size();i < 10;i++){
	sh_s = sh_s + "0";
  }
  cout << ji << "." << sh_s << endl;
  
  return 0;
}
0