結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー |
👑 |
提出日時 | 2023-11-20 11:46:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,506 bytes |
コンパイル時間 | 792 ms |
コンパイル使用メモリ | 110,568 KB |
最終ジャッジ日時 | 2025-02-17 22:36:04 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 WA * 19 |
ソースコード
#line 2 "/home/sakflat/CP/_library/cpp/template/template.cpp"//yukicoder@cpp17#include <iostream>#include <cmath>#include <algorithm>#include <iomanip>#include <string>#include <vector>#include <set>#include <stack>#include <queue>#include <map>#include <bitset>#include <complex>#include <cctype>#include <utility>#include <climits>#include <numeric>using namespace std;using ll = long long;using P = pair<ll,ll>;const ll MOD = 998244353;const ll MODx = 1000000007;const int INF = (1<<30)-1;const ll LINF = (1LL<<62LL)-1;const double EPS = (1e-10);P ar4[4] = {{0,1},{0,-1},{1,0},{-1,0}};P ar8[8] = {{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}};template <typename T> vector<T> make_vector(size_t a, T b) { return vector<T>(a, b); }template <typename... Ts> auto make_vector(size_t a, Ts... ts) { return vector<decltype(make_vector(ts...))>(a, make_vector(ts...)); }/*確認ポイントcout << fixed << setprecision(n) << 小数計算//n桁の小数表記になる計算量は変わらないが楽できるシリーズmin(max)_element(iter,iter)で一番小さい(大きい)値のポインタが帰ってくるcount(iter,iter,int)でintがiterからiterの間にいくつあったかを取得できる*//*function corner below*//*Function corner above*//* comment outed because can cause bugs__attribute__((constructor))void initial() {cin.tie(0);ios::sync_with_stdio(false);}*/#line 2 "/home/sakflat/CP/_library/cpp/template/basic.cpp"int digit[20];int main(){int n;cin>>n;long long sei = 0;long long shou = 0;for(int i = 0; n > i; i++){string s;cin>>s;int div = -1;for(int j = 0; s.size() > j; j++){if(s[j] == '.'){div = j;}}if(div == -1){sei += stoll(s);}else{bool rev = s[0] == '-';string tmpsei = s.substr(0, div);string tmpshou = s.substr(div+1, s.size()-div);while(tmpshou.size() != 10){tmpshou.push_back('0');}sei += stoll(tmpsei);shou += stoll(tmpshou) * (rev ? -1 : 1);}}if(shou < 0){int kari = shou / 10000000000LL + 1;sei -= kari;shou = ((shou % 10000000000LL) + 10000000000LL) % 10000000000LL;}else{sei += shou / 10000000000LL;shou = shou % 10000000000LL;}string formatshou = to_string(shou);while(formatshou.size() != 10){formatshou = "0" + formatshou;}cout << sei << "." << formatshou << endl;return 0;}