結果

問題 No.49 算数の宿題
ユーザー Kome_soudouKome_soudou
提出日時 2022-11-01 01:59:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 165,196 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-24 17:52:11
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	string s;
	cin >> s;
	int ans = 0;
	int cnt = 0;
	char last = '*';
	for(int i = 0; i < (int)s.size(); i++)
	{
		if(s[i] == '*' || s[i] == '+')
		{
			if(last == '*') ans += cnt;
			else ans *= cnt;
			last = s[i];
			cnt = 0;
		}
		else
		{
			cnt *= 10;
			cnt += s[i] - '0';
		}
	}
	
	if(last == '*') ans += cnt;
	else ans *= cnt;
	cout << ans << endl;
	return 0;
}
0