結果
問題 | No.49 算数の宿題 |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-03 16:43:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 1,840 ms |
コンパイル使用メモリ | 199,940 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-06-02 07:25:46 |
合計ジャッジ時間 | 14,195 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { string s; cin >> s; int n = s.size(); int i = 0; int ans = 0; while (i < n && isdigit(s[i])) { ans *= 10; ans += s[i] - '0'; i++; } while (i < n) { int num = 0; if (s[i] == '*') { while (i < n && isdigit(s[i])) { num *= 10; num += s[i] - '0'; i++; } ans += num; } else if (s[i] == '+') { while (i < n && isdigit(s[i])) { num *= 10; num += s[i] - '0'; i++; } ans *= num; } } cout << ans << endl; return 0; }