結果
問題 |
No.81 すべて足すだけの簡単なお仕事です。
|
ユーザー |
![]() |
提出日時 | 2014-12-17 23:05:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,143 bytes |
コンパイル時間 | 680 ms |
コンパイル使用メモリ | 70,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-12 01:07:00 |
合計ジャッジ時間 | 1,857 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 21 |
ソースコード
#include <iostream> #include <iomanip> #include <sstream> #include <cmath> #include <cstdio> using namespace std; #define D13 10000000000000 inline void stoll(const string &s, long long &x) { istringstream ss(s); ss >> x; } int main() { int N; string S; bool minus; long long sumint = 0, sumdec = 0, x; cin >> N; while (N--) { cin >> S; minus = S[0] == '-'? true: false; int dpos = S.find('.'); if (dpos == string::npos) { stoll(S, x); sumint += x; } else { stoll(S.substr(0, dpos), x); sumint += x; string decpart = S.substr(dpos+1); stoll(decpart, x); x *= (long long)pow(10, 13-decpart.length()); sumdec += minus? -x: x; } } sumint += sumdec / D13; if (sumdec < 0) { sumdec *= -1; sumdec %= D13; sumdec = D13 - sumdec; } else { sumdec %= D13; } sumdec = (sumdec + 500) / 1000; printf("%lld.%010lld\n", sumint, sumdec); return 0; }