結果

問題 No.708 (+ー)の式
ユーザー bal4ubal4u
提出日時 2019-05-02 10:02:23
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-10 03:58:42
合計ジャッジ時間 897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// yukicoder: No.708 (+ー)の式
// 2019.5.2 bal4u

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

#if 1
#define pc(c) putchar_unlocked(c)
#else
#define pc(c) putchar(c)
#endif

char S[105], *p;
int expr();
int num()
{
	int n = 0;
	while (isdigit(*p)) n = 10*n + (*p++ & 0xf);
	return n;
}

int factor()
{
	int x;

	if (*p == '-') p++, x = -factor();
	else if (*p == '(') p++, x = expr(), p++;
	else x = num();
	return x;
}

int expr()
{
	int x, y, op;
	x = factor();
	while (1) {
		if      (*p == '+') op = 1;
		else if (*p == '-') op = 0;
		else break;
		p++;
		y = factor();
		if (op) x += y; else x -= y;
	}
	return x;
}

int main()
{
	scanf("%s", p = S);
	printf("%d\n", expr());
	return 0;
}
0