Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
11767 蒋瀚辉 C语言5.14 C++ Accepted 2 MS 772 KB 248 2021-05-17 16:56:12

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { double x,y; scanf("%lf %lf",&x,&y); if(x<0) x=-x; if(y<0) y=-y; if((x-2)*(x-2)+(y-2)*(y-2)<=1) printf("10.00"); else printf("0.00"); }