| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 32575 | chenyifei | 点和正方形的关系 | C++ | Wrong Answer | 0 MS | 248 KB | 165 | 2023-12-01 22:07:18 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=-2&&a<=2&&b>=-3&&b<=3){ cout<<"yes"; } else cout<<"no"; return 0; }