結果

問題 No.708 (+ー)の式
ユーザー Kutimoti_TKutimoti_T
提出日時 2018-06-30 09:50:19
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,022 bytes
コンパイル時間 1,313 ms
コンパイル使用メモリ 160,788 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 00:50:16
合計ジャッジ時間 1,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)

struct Exe{
  string s;
  Exe(const string & S) : s(S){
    if(s[0] != '-') s = "+" + s;
  }

  int value(){
    int ans = 0;
    int cnt = 0;
    int si = 0;
    for(int i = 0;i < s.size();i++){
      char c = s[i];
      if(cnt == 0){
        if(c == '+') si = 1;
        else si = -1;
        cnt++;
      }
      else{
        if(c == '('){
          i++;
          int open = 1;
          string N = "";
          while(true){
            if(s[i] == ')'){
              open--;
              if(open == 0) break;
            }
            if(s[i] == '('){
              open++;
            }
            N += s[i];
            i++;
          }
          ans += si * (int)(Exe(N).value() - '0');
        }
        else{
          ans += si * (int)(c - '0');
        }
        cnt--;
      }
    }
    return ans;
  }
};

int main(){
  string s;
  cin >> s;
  cout << Exe(s).value() << endl;
}
0