2 条题解
-
1
#include<bits/stdc++.h> using namespace std; stack<char> a; char ch; int main(){ ios::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr); while(ch!='@'){ cin>>ch; if(ch=='('){ a.push(ch); } if(ch==')'){ if(!a.size()){ cout<<"NO"; return 0; } a.pop(); } } if(!a.size()){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }
- 1
信息
- ID
- 5797
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- 递交数
- 87
- 已通过
- 35
- 上传者