結果

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

テストケース

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

ソースコード

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";
	  }
	  break;
	}
  }
}
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 << get_d(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