| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 47110 | 杨中琦 | 点和正方形的关系 | C++ | Accepted | 100 | 0 MS | 252 KB | 160 | 2022-07-14 11:21:23 |
#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; }