Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
11768 | 徐一喆 | C语言5.14 | C++ | Accepted | 1 MS | 784 KB | 215 | 2021-05-17 16:59:47 |
#include<bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x>>y; if(x<0) x=-x; if(y<0) y=-y; if((x-2)*(x-2)+(y-2)*(y-2)>1) printf("0.00"); else printf("10.00"); return 0; }