记录编号 40813 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 打乒乓球 最终得分 100
用户昵称 Gravatarok 是否通过 通过
代码语言 C++ 运行时间 0.006 s
提交时间 2012-07-19 11:08:47 内存使用 0.34 MiB
显示代码纯文本
#include <fstream>
using namespace std;
int ce(int x,int y)
{
    int t;
    t=0;
    if((x-30)*(x-30)+(y-30)*(y-30)<400) t=1;
    if((x-100)*(x-100)+(y-30)*(y-30)<100) t=2;
    if((x-170)*(x-170)+(y-30)*(y-30)<25) t=3;
    return t;
}
int main()
{
    int n,i,j,m[101]={0},a[101],b[101][201],c[101][201];
    ifstream input("table2.in");
    ofstream output("table2.out");
    input>>n;
    for(i=1;i<=n;i++)
    {
        input>>a[i];
        for(j=1;j<=a[i];j++)
        {
            input>>b[i][j]>>c[i][j];
            m[i]+=ce(b[i][j],c[i][j]);
        }
    }
    for(i=1;i<=n;i++)
    {
        output<<m[i]<<endl;
    }
    input.close();
    output.close();
    return 0;
}