結果

問題 No.49 算数の宿題
ユーザー togari_takamototogari_takamoto
提出日時 2016-02-28 12:22:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 145,084 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-24 17:29:39
合計ジャッジ時間 1,758 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	string s; cin >> s;
	ll sum = atoi(s.c_str());
	ll index = log10(sum) + 1;
	while (index<s.size()) {
		ll x = atoi(s.c_str() + index + 1);
		sum = (s[index] == '*' ? sum + x : sum * x);
		index += 1 + (x == 0 ? 1 : log10(x)) + 1;
	}
	cout << sum << endl;
	return 0;
}
0