結果
問題 | No.49 算数の宿題 |
ユーザー | kkslucy1 |
提出日時 | 2018-03-13 01:39:14 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 448 bytes |
コンパイル時間 | 1,434 ms |
コンパイル使用メモリ | 158,548 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 01:58:49 |
合計ジャッジ時間 | 1,771 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; int ans = 0; int i = 0; while (s[i] != '*'&&s[i] != '+') { ans *= 10; ans += s[i++] - '0'; } while (i < s.size()) { char c = s[i++]; int num = 0; while (s[i] != '*'&&s[i] != '+'&&i<s.size()) { num *= 10; num += s[i++] - '0'; } if (c == '*') { ans += num; } else if (c == '+') { ans *= num; } } cout << ans << endl; return 0; }