Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
180696 | 黄锦昱 | 表达式求值 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 420 | 2024-08-21 17:21:29 |
#include<bits/stdc++.h> using namespace std; #define Mod 10000 stack <int> n; int main() { int a,b; char c; cin>>a; a=a%Mod; n.push(a); while(cin>>c>>b) { if(c=='*') { a=n.top(); n.pop(); n.push(a*b%Mod); } else n.push(b); } short ans=0; while(!n.empty()) { a=(a+n.top())%Mod; n.pop(); } cout<<a<<endl; return 0; }