結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー dddai1206_cdddai1206_c
提出日時 2014-11-28 00:56:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 72,484 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-01 22:34:21
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,380 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
4,384 KB
testcase_26 AC 1 ms
4,384 KB
testcase_27 WA -
testcase_28 AC 1 ms
4,380 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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