結果

問題 No.222 引き算と足し算
ユーザー firiexpfiriexp
提出日時 2019-03-02 23:00:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 797 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 91,244 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 05:29:12
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:34:43: warning: 't' may be used uninitialized [-Wmaybe-uninitialized]
   34 |     cout << (t == '+' ? aa-bb : aa+bb) << "\n";
      |                                           ^~~~
main.cpp:23:10: note: 't' was declared here
   23 |     char t;
      |          ^

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <limits>


static const int MOD = 1000000007;
using ll = int64_t;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

int main() {
    string s;
    string a, b;
    char t;
    cin >> s;
    int x = 0;
    for (int i = 0; i < s.size(); ++i) {
        if(x == 0 && '0' <= s[i] && s[i] <= '9') x++;
        else if(x == 1 && (s[i] == '+' || s[i] == '-')) {
            x++, a = s.substr(0, i), b = s.substr(i+1, s.size());
            t = s[i];
        }
    }
    int aa = stoi(a), bb = stoi(b);
    cout << (t == '+' ? aa-bb : aa+bb) << "\n";
    return 0;
}
0