Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99337 郭筱芷 表达式括号匹配1 C++ 解答错误 40 0 MS 252 KB 406 2023-08-22 16:17:34

Tests(4/10):


#include<bits/stdc++.h> using namespace std; int main(){ char x[1000]; int a=0,b=0; gets(x); for(int i=1;i<=strlen(x);i++){ if(x[i]=='['){ a++; } if(x[i]=='('){ b++; } if(x[i]==')'&&b==1){ b--; } if(x[i]==']'&&a==1){ a--; }else{ cout <<"Wrong"; return 0; } } if(a!=0&&b!=0){ cout <<"Wrong"; }else{ cout <<"Yes"; } return 0; }


测评信息: