11 条题解

  • 1
    @ 2025-7-30 14:30:59

    干货!可即刻复制,包AC!

    #include <iostream>
    using namespace std;
    int main()
    {
    	int px,py;
    	cin >> px >> py;
    	if (-1 <= px && px <= 1 && -1 <= py && py <= 1)
    		cout << "yes";
    	else
    		cout << "no";
    	
        return 0;
    }
    

    信息

    ID
    855
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    534
    已通过
    299
    上传者