結果
| 問題 |
No.49 算数の宿題
|
| コンテスト | |
| ユーザー |
ふーらくたる
|
| 提出日時 | 2016-08-08 18:54:30 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 704 bytes |
| コンパイル時間 | 443 ms |
| コンパイル使用メモリ | 56,828 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-23 01:53:13 |
| 合計ジャッジ時間 | 986 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <iostream>
#include <cctype>
#include <assert.h>
using namespace std;
int main() {
string exprs;
cin >> exprs;
auto p = 0, ans = 0, op = -1;
while (p < exprs.size()) {
if (isdigit(exprs[p])) {
int num = 0;
while (isdigit(exprs[p])) {
num = num * 10 + exprs[p++] - '0';
}
if (op < 0) ans = num;
else if (op == '+') {
ans = ans * num;
} else if (op == '*') {
ans = ans + num;
} else {
throw "unknown op";
}
} else {
op = exprs[p++];
}
}
cout << ans << endl;
return 0;
}
ふーらくたる