17 solutions

  • 0
    @ 2022-1-1 21:35:00

    第一眼的做法,因为没卡左右括号,看看就好

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int n=0,k=0;
    char s;
    while(1){
    	cin>>s;
    	if(s=='@') break;
    	if(s=='(') n++;
    	if(s==')') k++; 
    }
    if(n==k) cout<<"YES";
    else cout<<"NO";
    	return 0;
    }
    

    Information

    ID
    289
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    5
    Tags
    # Submissions
    234
    Accepted
    87
    Uploaded By