Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99400 22426王睿涵 表达式括号匹配2 C++ 通过 100 0 MS 256 KB 299 2023-08-22 16:31:59

Tests(8/8):


#include<bits/stdc++.h> using namespace std; int main() { bool flag=1; stack<char> t; char a; cin>>a; while(a!='@') { if(a=='(' || a=='[') t.push(a); else if(a==')'&&t.top()=='(' || a==']'&&t.top()=='[') t.pop(); cin>>a; } if(t.empty()) cout<<"YES"; else cout<<"NO"; }


测评信息: