记录编号 577562 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013PJ]表达式求值 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2022-11-10 19:57:28 内存使用 1.18 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long a,c,tmp1=0,tmp2=0;
char b;
bool flag=false;
int main(){
	freopen("expr2013.in","r",stdin);
	freopen("expr2013.out","w",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	cin>>a;
	while(cin>>b>>c){
		if(b=='*'){
			tmp1=a*c%10000;
			a=tmp1;
		}
		else{
			tmp2=(tmp2+a)%10000;
			a=c;
		}
	}
	cout<<(a+tmp2)%10000<<endl;
	return 0;
}