結果
問題 | No.222 引き算と足し算 |
ユーザー | aya_shameimaru |
提出日時 | 2015-06-05 23:00:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,518 bytes |
コンパイル時間 | 920 ms |
コンパイル使用メモリ | 83,056 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 21:27:20 |
合計ジャッジ時間 | 1,587 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 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 | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 1 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
ソースコード
#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; }