| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5475 | 黄祖耀 | 点和正方形的关系 | C++ | Wrong Answer | 10 | 0 MS | 244 KB | 164 | 2020-08-05 06:16:16 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; if((x>=-1||x<=1)&&(y>=-1||y<=1)) cout<<"yes"; else cout<<"no"; return 0; }