結果
問題 |
No.81 すべて足すだけの簡単なお仕事です。
|
ユーザー |
![]() |
提出日時 | 2014-11-28 00:51:50 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,049 bytes |
コンパイル時間 | 868 ms |
コンパイル使用メモリ | 75,032 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-03 09:54:50 |
合計ジャッジ時間 | 5,129 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 4 RE * 19 |
ソースコード
#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; }