本萌新初学Py,样例本机能过,然而交上去全部RE,求助
n=int(input())
stk=[];mx=[0]
for i in range(1,n+1):
s=input()
if(len(s)!=1):
temp=s[2:]
temp=int(temp)
stk.append(temp)
apd=max(mx[len(mx)-1],temp)
mx.append(apd)
else:
if(int(s)==1):
stk.pop(len(stk) - 1)
mx.pop(len(mx)-1)
if(int(s)==2):
print(mx[len(mx)-1])