Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
5488 | 陈一畅 | 点和正方形的关系 | C++ | Accepted | 100 | 0 MS | 248 KB | 159 | 2020-08-05 11:01:56 |
#include<bits/stdc++.h> using namespace std; int x,y; int main(){ cin>>x>>y; if(x<=1&&y<=1&&x>=-1&&y>=-1) cout<<"yes"; else cout<<"no"; return 0; }