結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | otsnsk |
提出日時 | 2014-12-17 23:05:56 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 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
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | WA | - |
ソースコード
#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; }