B3614玄关求调
  • 板块灌水区
  • 楼主tc291311
  • 当前回复0
  • 已保存回复1
  • 发布时间2025/1/18 19:35
  • 上次更新2025/1/18 22:20:04
查看原帖
B3614玄关求调
1340395
tc291311楼主2025/1/18 19:35

rt

Code

#include<bits/stdc++.h>
#define ull unsigned long long
using namespace std;
int main(){
	int T;
	cin>>T;
	while(T--){
		stack<ull int>s;
		int n;
		scanf("%d",&n);
		while(n--){
			string op;
			cin>>op;
			if(op=="push"){
				ull x;
				scanf("%d",&x);
				s.push(x);
			}
			else if(op=="pop"){
				if(s.empty())	cout<<"Empty\n";
				else s.pop();
			}
			else if(op=="query"){
				if(s.empty())	cout<<"Anguei!\n"; 
				else cout<<s.top()<<endl;
			}
			else cout<<s.size()<<endl;
		}
	}
	return 0;
}
2025/1/18 19:35
加载中...