結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | fantasiabaetica |
提出日時 | 2018-07-04 22:06:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 4,740 bytes |
コンパイル時間 | 759 ms |
コンパイル使用メモリ | 69,460 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 10:13:41 |
合計ジャッジ時間 | 1,448 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #define ll long long using namespace std; int main(){ int N; cin >> N; ll sum_ll = 0; ll sum_double = 0; string a; for (int i = 0; i < N; i++) { cin >> a; int minus = a.find("-"); // 正の数の場合 if (minus == string::npos){ int comma = a.find("."); // 小数の場合 if (comma == string::npos) { sum_ll += stoll(a); // 整数の場合 } else { sum_ll += stoll(a.substr(0, comma)); string a_double = a.substr(comma + 1); for (int j = a_double.length(); j < 10; j++) { a_double += "0"; } sum_double += stoll(a_double); } // 負の数の場合 } else { a = a.substr(1); int comma = a.find("."); // 小数の場合 if (comma == string::npos) { sum_ll -= stoll(a); // 整数の場合 } else { sum_ll -= stoll(a.substr(0, comma)); string a_double = a.substr(comma + 1); for (int j = a_double.length(); j < 10; j++) { a_double += "0"; } sum_double -= stoll(a_double); } } } /* cout << sum_ll << endl; cout << sum_double << endl; */ // 整数部分、小数部分について、0以上か以下で4パターンに場合分け string sum_double_str = to_string(sum_double); if (sum_ll == 0 && sum_double >= 0 ){ int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ sum_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_double_str = sum_double_str.substr(sum_double_str_len - 10); } } else if (sum_ll == 0 && sum_double < 0 ){ sum_double_str = sum_double_str.substr(1); int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ ll sum_double_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_ll = -sum_double_ll; sum_double_str = sum_double_str.substr(sum_double_str_len - 10); } else { sum_ll = 0; cout << "-"; } } else if (sum_ll > 0 && sum_double >= 0 ){ int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ ll sum_double_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_ll += sum_double_ll; sum_double_str = sum_double_str.substr(sum_double_str_len - 10); } } else if (sum_ll > 0 && sum_double < 0) { sum_double_str = sum_double_str.substr(1); int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ ll sum_double_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_ll -= sum_double_ll; sum_double_str = sum_double_str.substr(sum_double_str_len - 10); if (sum_double_str != "0000000000") { sum_ll -= 1; sum_double_str = to_string(10000000000 - stoll(sum_double_str)); } } else { sum_ll -= 1; sum_double_str = to_string(10000000000 - sum_double); } } else if (sum_ll < 0 && sum_double >= 0 ) { int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ ll sum_double_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_ll += sum_double_ll; sum_double_str = sum_double_str.substr(sum_double_str_len - 10); if (sum_double_str != "0000000000") { sum_ll += 1; sum_double_str = to_string(10000000000 - stoll(sum_double_str)); } } else { if (sum_double_str != "0") { sum_ll += 1; sum_double_str = to_string(10000000000 - sum_double); } } } else if (sum_ll < 0 && sum_double < 0 ) { sum_double_str = sum_double_str.substr(1); int sum_double_str_len = sum_double_str.length(); if (sum_double_str_len > 10){ ll sum_double_ll = stoll(sum_double_str.substr(0, sum_double_str_len - 10)); sum_ll -= sum_double_ll; sum_double_str = sum_double_str.substr(sum_double_str_len - 10); } } for (int j = sum_double_str.length(); j < 10; j++) { sum_double_str = "0" + sum_double_str; } cout << sum_ll << "." << sum_double_str << endl; return 0; }