結果

問題 No.49 算数の宿題
ユーザー Hydrogen332Hydrogen332
提出日時 2024-11-14 00:35:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 3,038 ms
コンパイル使用メモリ 248,056 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 00:35:09
合計ジャッジ時間 3,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    cin.tie(nullptr);
    
    string S;
    cin >> S;
    int siz = S.size();
    
    vector<ll> num;
    int x = 0;
    rep(i, 0, siz) {
        if (S[i] == '*' || S[i] == '+') {
            num.push_back(x);
            x = 0;
        } else {
            x *= 10;
            x += S[i] - '0';
        }
    }
    num.push_back(x);
    
    int index = 1;
    ll ans = num[0];
    rep(i, 0, siz) {
        if (S[i] == '*') {
            ans += num[index];
            index++;
        } else if (S[i] == '+') {
            ans *= num[index];;
            index++;
        }
    }
    
    cout << ans << '\n';
}
0