結果
問題 | No.708 (+ー)の式 |
ユーザー | ajinori |
提出日時 | 2018-06-29 23:35:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,377 bytes |
コンパイル時間 | 1,382 ms |
コンパイル使用メモリ | 166,116 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 00:18:29 |
合計ジャッジ時間 | 1,961 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:47:22: warning: 'tmp' may be used uninitialized [-Wmaybe-uninitialized] 47 | else res += tmp; | ~~~~^~~~~~ main.cpp:41:17: note: 'tmp' was declared here 41 | int tmp; | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define REP(i, k, n) for (int i = (int)(k); i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n)-1; i >= 0; i--) #define rREP(i, k, n) for (int i = (int)(n)-1; i >= k; i--) #define fi first #define se second #define vi vector<int> #define pb push_back #define mp make_pair #define pcnt __builtin_popcount typedef long long ll; const double inf = 900900900100.0; const int MOD = (int)1e9 + 7; const double EPS = 1e-9; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int main(){ string s; cin >> s; int res = 0; bool flag = false; rep(i,s.size()) { if(s[i] == '-') flag = true; if(s[i] == '+') flag = false; if(s[i]>='0' && s[i]<='9'){ if(flag) res-=(s[i]-'0'); else res += (s[i]-'0'); flag = false; } if (s[i] == '('){ int tmp; if(s[i+2]=='+'){ tmp = (int)(s[i+1]-'0')+(s[i+3]-'0'); } if(s[i+2]=='-'){ tmp = (int)(s[i+1]-'0')-(s[i+3]-'0'); } if(flag) res-=tmp; else res += tmp; flag = false; i+=4; } } cout << res << endl; return 0; }