結果
問題 | No.708 (+ー)の式 |
ユーザー | tempura_pp |
提出日時 | 2018-06-30 00:12:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,042 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 85,292 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 00:33:32 |
合計ジャッジ時間 | 1,275 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<map> #include<set> #include<bitset> using namespace std; #define REP(i,m,n) for(int i=(int)m ; i < (int) n ; i++ ) #define rep(i,n) REP(i,0,n) typedef long long ll; typedef pair<int,int> pint; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=998244353 ; int dx[4]={1,0,-1,0} , dy[4]={0,1,0,-1} ; int n,k; string s; int dfs(){ int ret=0; int sgn=1; while(1){ if(k>=n)break; if(s[k]==')')break; if(s[k]=='('){ k++; ret+=sgn*dfs(); k++; } else if(s[k]=='-'){ sgn=-1; k++; } else if(s[k]=='+'){ sgn=1; k++; } else { int x=s[k]-'0'; ret+=sgn*x; k++; } } return ret; } int main(){ cin>>s; n=s.size(); cout<<dfs()<<endl; return 0; }