| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5431 | 孙灏洋 | 点和正方形的关系 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 254 | 2020-08-02 19:42:48 |
#include<bits/stdc++.h> using namespace std; int x,y; int main(){ cin>>x>>y; if(x>=1&&y>=-1) cout<<"Yes"; else if(x>=1&&y>=1) cout<<"Yes"; else if(x>=-1&&y>=-1) cout<<"Yes"; else if(x>=-1&&y>=1) cout<<"Yes"; else cout<<"No"; return 0; }