9 条题解

  • -4
    @ 2022-1-23 13:44:04
    #include <iostream>
    using namespace std;
    int main(){
        int x,y;
        scanf("%d%d",&x,&y);
        if(x <= 1 && x >= -1 && y >= -1 && y <= 1)
            cout<<"yes"<<endl;
        else
            cout<<"no"<<endl;
        return 0;
    }

    信息

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