結果
| 問題 | No.708 (+ー)の式 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-08-20 21:34:16 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 600 bytes | 
| コンパイル時間 | 2,178 ms | 
| コンパイル使用メモリ | 193,236 KB | 
| 最終ジャッジ日時 | 2025-01-07 14:22:04 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 TLE * 2 | 
| other | AC * 2 TLE * 10 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int calc(string s, int& i) {
    int n=s[i]-'0';
    i++;
    while (i<s.size()) {
        if (s[i]=='+') {
            i++;
            n+=s[i]-'0';
            i++;
        } else if (s[i]=='-') {
            i++;
            n-=s[i]-'0';
            i++;
        } else if (s[i]=='(') {
            i++;
            n+=calc(s,i);
        } else if (s[i]==')') {
            i++;
            return n;
        }
    }
    return n;
}
int main() {
    string s;
    cin>>s;
    int i=0;
    cout<<calc(s,i)<<endl;
    return 0;
}
            
            
            
        