Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
24326 | 老方 | 点和正方形的关系 | C++ | Accepted | 0 MS | 248 KB | 226 | 2023-08-10 13:11:33 |
#include <iostream> using namespace std; int main() { int x,y; cin>>x>>y; if ((x<=2&&x>=-2)&&(y<=3&&y>=-3)) { cout<<"Yes"; } else { cout<<"No"; } return 0; }