結果
問題 | No.49 算数の宿題 |
ユーザー |
![]() |
提出日時 | 2024-03-09 01:12:33 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 688 bytes |
コンパイル時間 | 3,122 ms |
コンパイル使用メモリ | 245,652 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 21:05:03 |
合計ジャッジ時間 | 3,627 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { string s; cin >> s; s.push_back('_'); int ans = 0; string t = ""; int state = 0; for (char c : s) { if (isdigit(c)) t += c; else { if (state == 0) { ans = stoi(t); } if (state == 1) { ans += stoi(t); } if (state == 2) { ans *= stoi(t); } state = (c == '*' ? 1 : 2); t = ""; } } cout << ans << endl; return 0; }