QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#413603 | #6750. Calculate | Arnold_6 | AC ✓ | 1ms | 3836kb | C++14 | 2.7kb | 2024-05-17 19:45:29 | 2024-05-17 19:45:30 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
int cal(string s)
{
int len=s.length();
stack<char>op;
string ex;
ex.clear();
for(int i=0;i<len;i++)
{
if(s[i]>='0' && s[i]<='9')ex.push_back(s[i]);
else
{
if(op.empty())op.push(s[i]);
else if(s[i]=='(')op.push(s[i]);
else if(s[i]=='+'||s[i]=='-')
{
if(op.top()!='(')
{
ex.push_back(op.top());
op.pop();
op.push(s[i]);
}
else
{
op.push(s[i]);
}
}
else if(s[i]==')')
{
while(op.top()=='+'||op.top()=='-')
{
ex.push_back(op.top());
op.pop();
}
op.pop();
}
}
// cout<<ex<<endl;
}
while(op.size())ex.push_back(op.top()),op.pop();
// cout<<ex<<endl;
len=ex.size();
stack<int>num;
for(int i=0;i<len;i++)
{
if(ex[i]>='0'&&ex[i]<='9')
{
num.push((ex[i]-'0'));
}
else
{
int b=num.top();
num.pop();
int a=num.top();
num.pop();
int t;
if(ex[i]=='+')t=a+b;
else t=a-b;
num.push(t);
}
}
// cout<<num.top()<<endl;
return num.top();
}
signed main()
{
string s;
cin>>s;
int len=s.length();
int pos[3],cnt=0;
for(int i=0;i<len;i++)
{
if(s[i]=='?')
{
cnt++;
pos[cnt]=i;
}
}
if(cnt==0)
{
cout<<cal(s);
}
if(cnt==1)
{
string st;
st=s;
st[pos[1]]='9';
int ans=cal(st);
st[pos[1]]='0';
ans=max(ans,cal(st));
// cout<<st<<endl;
cout<<ans;
}
if(cnt==2)
{
string st;
st=s;
st[pos[1]]='0';
st[pos[2]]='0';
// cout<<st<<endl;
int ans=cal(st);
st[pos[1]]='0';
st[pos[2]]='9';
// cout<<st<<endl;
ans=max(ans,cal(st));
st[pos[1]]='9';
st[pos[2]]='0';
// cout<<st<<endl;
ans=max(ans,cal(st));
st[pos[1]]='9';
st[pos[2]]='9';
// cout<<st<<endl;
ans=max(ans,cal(st));
cout<<ans;
}
// system("pause");
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3604kb
input:
?+?
output:
18
result:
ok 1 number(s): "18"
Test #2:
score: 0
Accepted
time: 1ms
memory: 3508kb
input:
(?+9)-(?+1)
output:
17
result:
ok 1 number(s): "17"
Test #3:
score: 0
Accepted
time: 1ms
memory: 3540kb
input:
((9)-(((8)-(2))+(((1+(1))-(1+((2)+2+2)))+(5)+4))+(((7)-((9)+3))-((8)-(0-(2))+0))+((6)-(6+(((4)-(9))-(8-((9)+(1))+(0)))+(2-((9)+7))-(1)))-((((7)+(1))-((3)+(3)))-((2)-((6)-((3)-(8)))))+(2+0-((6)-(1))))-((((3)-(((0)+((4)-(9))+((6+8)+4)+(5)-(4-(3)-(8)))-((8)-(2))))+(((2)-(4))+(6)-(2))+(6-(1))-((2+9)-(3+...
output:
-63
result:
ok 1 number(s): "-63"
Test #4:
score: 0
Accepted
time: 1ms
memory: 3592kb
input:
(((((4)-((5)+(1))-(6-(8-(1))+((0)+(9))))+((2-(2))+(3+3-(((7)-(6))-(3))+(((3)+((5)-((0)-(6-(0)))))+((0)+((0)-(7)))+1-((3)-((8)-(8)))))))-(((((5-(3)-((((8)+0)+(9)-((7)-(9)))-(7)))+(2))+8+((4)-(6)+((5)-((7)+(2))))-(8-((7)+(3)+(9))))-(((9-(9-(8)))+1-((((4)+(9))+(8))+(2+(7)+3)))+((((6)+(2))-(1)-((((6+7-(...
output:
356
result:
ok 1 number(s): "356"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
((((((0+(5))+6)-((4)+(((7)+2)+6)-((((7)-(9))-(1))-((8-(2))+(5))-(2-((5)-(8))))-(3)))+((8)-(6)+3))+(7-(((4)+(6))+(((6)-(4))-(5))-(5-(4))-(5)+(2-(2)))+(6+(3+(2)+(7)+3)))+(((3)+(4)+(7)-(6-(5)))-((9+(8))+((1)-(0)))+((((8)+1)-(4))+(4))+(((4)-(4))+9+(((8)+3)-(6)+5)))-(((((5)+(9))-((3)-(0)))+((((0)+3)-(2))...
output:
-185
result:
ok 1 number(s): "-185"
Test #6:
score: 0
Accepted
time: 1ms
memory: 3836kb
input:
((((1-(4-(9)+((5)+(5)))+(((6)-(6)+((2)-(6)))-((7)+6)-(3)))-(2-((((7)+(8+(6)))-(5)+(7-((2)-(8)))+(4)-(((8)-(1))+(1)))-((3-(5)+(2-(1)))+2+(5)-(4))-(7)))+(9-(9+5)-(7)-((6)-(4)))+(((1+6)+(6+0-(9))+(((9+((2)+((1)-(5)))-(1))-(1))-(3+8-(2))))-((4)+((7)-(7))-(((2)-(6))+3)-((2-(3))+(4)-((0)-(1+(7)))+((0)+2))...
output:
-20
result:
ok 1 number(s): "-20"
Test #7:
score: 0
Accepted
time: 1ms
memory: 3612kb
input:
(((0-(((6)+(2))+4-(4)-(2))-((8)+4+(2))+2+(1+(9))+((2+(3))+(((8-(6))-(9))+(6)-((4)+0))-((7)-(3)-((3)+((3)+6-(2)))-(4))))-(((6)-((5)-(5-((9)+1-(6)))))+8)+(((8+(5)-(1))-(5))+(7-(0)-(0))+(((3)+(2)+(6)+0+(7)+(7)+(0+0-((1)+3)))-(((5+(8))-(9))-(8-((4)+9+(2)-(6-(6)-(4+5)))))+(2)-((((2)+1)+(0)+(3))+2))))-(((...
output:
200
result:
ok 1 number(s): "200"
Test #8:
score: 0
Accepted
time: 1ms
memory: 3756kb
input:
(8)+((7)+4)+(3)-(((3-(0)+(3+4)+(6-(6)+(7-((8+(8))-(7)+((5)-(6+2)))))-((8+(4))+((0)-((4)-(6)+(4)+((7+9)+(5+4-(5))))-(8))))-((5)+((2)-(6))+(5)))+(8+(((3)-(8))-(7)+(7-(0+(4-(1))-((7)+(0)+((7)-(1)))))))+(7-(5))+((((((2-(((3)+1)+(((2)+(5))+4)))+(((5)+4-(6))+(((2)+(2))-(4)-(4-(9))+((0)+(1))))+9-(8)+((6)+(...
output:
-24
result:
ok 1 number(s): "-24"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
(((9-(4-(9-(1)))+((8)-(1))+(5-(3+2)))+(((((((1)+0)+9)-(8))+(6-(4)-(0)))-(2+((((6)-(6)-(8))-((5)-(6)))-((7)+(1)))))+(((1-(8)+(9-((7)-(1)))+(0)-((4)-(0)))+1+(9)-((((6)-(1))-(7))-(6+3+8))-((1)+(1)-(9-(9))+8-(((9)-(5))+3-(9))+(3-((8)-(3))))+(3)-(0)-(2-(2-(8)))-(5+7)+(4)+(5)+(8+((6)-(2))+(3-(8))))-((0)-(...
output:
-69
result:
ok 1 number(s): "-69"
Test #10:
score: 0
Accepted
time: 1ms
memory: 3820kb
input:
((((((2+(((9)+(9))-(5)))+(0))+((2)-(5+8)-((((3)+(4))+9+((5-(((6)+(9))-(6)))-((8)+0)+(6)))+((4-(7))+(4)+(5-(1))+(4)-(4)+4))))-(((9)+((2)-(9))-(1)-(0-(3)+1))+(5)-((6-((9)+8))-(6-(4)))-(6))-(((((7)+8)-((3)+(0)-(1)-(((2)-(1))-(5))))+((2+(0))-((8)-((4)-(6))-((5)-(2))+(7))))-((8)-(9)-((8+(0-(0-(4)))+5)+(5...
output:
40
result:
ok 1 number(s): "40"
Test #11:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
(((((((0)-(0))-((((5)-((0)-(0)))+(((1)-(7+6))-((5)+0)))+3+7))-((4+4)-(6)-(9-(3+(1)))))-((((0)-(9)-(2))-((1-(2))-(5-(?))-((6)+(0)-(0))-(8+(9-(2)))))+(((7+4+(0)-((9)+8+(0+3+0)))-(2-(8+0)))-(0))))+(((((9)-(9))+((3+3+4)+(1)+(6)+((1)-(5))))-(3)-((6)+(5)))+(5)+4+1)+(((((((1)-(7))-((9)+(2)+1-(9+(4))))+(((4...
output:
-143
result:
ok 1 number(s): "-143"
Test #12:
score: 0
Accepted
time: 1ms
memory: 3608kb
input:
((((((8+(6))+(3)-(1)+((4-(8))+4)+(((9)-((0-(3))+(1))-(4))-((2-(6))-(((9-(3))+(1)-((7)-((1)+((2)-(2)))))+(2+(6-(8)))))+(2+(0)))+(5+9+((2+4-(0))-(((5)+(1+3)-(((7-(1))-(2))-(1)))-(9+((2)-(3)))))+(((7)-((5)+1+9-(1)))-((4)-(5-(0+5)-((8)-((5)+(0))-((8)+(0)-(4)-(0)))))))-(((3)+(0)+3)-(8-(0)+4)))+((1-(2)+((...
output:
52
result:
ok 1 number(s): "52"