2 条题解

  • 0
    @ 2025-10-26 9:51:29
    #include<bits/stdc++.h>
    using namespace std;
    int top=0;
    char n;
    int main(){
        while(cin>>n){
        	if(n=='@'){
                if(top==0)
                    cout<<"YES";
                else
                    cout<<"NO";
            }
        	if(n=='(')
        		top++;
        	if(n==')')
        		top--;
        	if(top<0){
        		cout<<"NO";
        		return 0;
    		}
    	}
    }
    

    信息

    ID
    5797
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    87
    已通过
    35
    上传者