結果

問題 No.222 引き算と足し算
ユーザー aya_shameimaruaya_shameimaru
提出日時 2015-06-05 23:00:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,518 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 81,552 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-09 23:09:41
合計ジャッジ時間 1,908 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,384 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <algorithm>
#include <string>
#include <stack>
#include <queue>
#include <set>
#include <cstdio>
#include <string.h>
#include <sstream>
#include <iomanip>
#include <map>
using namespace std;

#define REP(i, n) for(int i = 0; i < n; i++)
#define RREP(i, n) for(int i=(n)-1;i>=0;i--)
#define FOR(i, b, e) for(int i = b; i < e; i++)
#define to_bit(i) static_cast< bitset<8> >(i)
#define INF (1<<28)
#define EPS 1e-9

int main(int argc, const char * argv[]){
    //    cout << (int)'+' << endl;
    //    cout << (int)'-' << endl;
    //    cout << (int)'0' << endl;
    string str;
    cin >> str;
    
    FOR(i, 1, str.length()){
        if(str[i-1] >= '0'){
            if(str[i] == '-'){
                str[i] = '+';
            }else if(str[i] == '+'){
                str[i] = '-';
            }
        }
    }
    //    cout << str << endl;
    
    int ans = 0;
    int num = 0;
    int op = 1;
    REP(i,str.length()){
        switch (str[i]) {
            case '+':
                ans += op * num;
                if(num != 0) op = 1;
                num = 0;
                break;
                
            case '-':
                ans += op * num;
                if(num != 0) op = 1;
                num = 0;
                op *= -1;
                break;
                
            default:
                num *= 10;
                num += (int)(str[i] - '0');
                break;
        }
    }
    ans += op * num;
    cout << ans << endl;
}
0