結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー fantasiabaeticafantasiabaetica
提出日時 2018-07-04 22:06:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 4,740 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 70,860 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 11:46:13
合計ジャッジ時間 1,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0