Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99315 | 梁晨熙 | 表达式括号匹配1 | C++ | 通过 | 100 | 0 MS | 252 KB | 581 | 2023-08-22 16:10:18 |
#include<bits/stdc++.h> using namespace std; string s; int m; char stc[100001]; int main(){ cin>>s; for(int i=0;i<s.size();i++){ if(s[i]=='('||s[i]=='['){ m++; stc[m]=s[i]; } else{ if(s[i]==']'){ if(stc[m]!='['){ cout<<"Wrong"<<endl; return 0; } else{ stc[m]=0; m--; } } if(s[i]==')'){ if(stc[m]!='('){ cout<<"Wrong"<<endl; return 0; } else{ stc[m]=0; m--; } } } } if(m==0) cout<<"OK"<<endl; else cout<<"Wrong"<<endl; return 0; }