3 条题解

  • 1
    @ 2025-10-7 18:38:46
    #include<bits/stdc++.h> 
    using namespace std; 
    long long x,y;
    int main(){ 
    	cin >> x >> y; 
    	if(x >= -1 && x <= 1){ 
    		if(y >= -1 && y <= 1){ 
    			cout << "yes" << endl;
    			exit(0);
    		}else{ 
    			cout << "no" << endl;
    			exit(0); 
    		} 
    	}else{ 
    		cout << "no" << endl; 
    		exit(0); 
    	}
    	return 0; 
    }
    
    
    
    

    信息

    ID
    4501
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    89
    已通过
    71
    上传者