結果

問題 No.49 算数の宿題
ユーザー bal4ubal4u
提出日時 2019-04-07 22:49:44
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 1,168 ms
コンパイル使用メモリ 28,272 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-24 17:42:10
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// yukicoder: No.49 算数の宿題
// 2019.4.7 bal4u
// 構文解析

#include <stdio.h>
#include <ctype.h>

char s[105];

char *num(int *n, char *p)
{
	int k = 0;
	while (isdigit(*p)) k = 10 * k + (*p++ & 0xf);
	*n = k;
	return p;
}

int main()
{
	int x, op, ans;
	char *p;

	scanf("%s", s);
	p = num(&ans, s);
	while (*p) {
		if (isdigit(*p)) {
			p = num(&x, p);
			if (op == '*') ans += x;
			else ans *= x;
		}
		else op = *p++;
	}
	printf("%d\n", ans);
	return 0;
}
0