提交时间:2024-01-05 13:31:32

运行 ID: 119283

#include <bits/stdc++.h> using namespace std; stack <int> x; int main() { int a,b; char c; cin>>a; int m=10000; a=a%m; x.push(a); while(cin>>c>>b) { if(c=='*') { a=x.top(); x.pop(); x.push(a*b%m); } else x.push(b); } a=0; while(x.size()) { a+=x.top(); a%=m; x.pop(); } cout<<a<<endl; return 0; }