比赛 |
20130725暑期B班1测 |
评测结果 |
AAAAAAAAAA |
题目名称 |
打乒乓球 |
最终得分 |
100 |
用户昵称 |
周梓翰 |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2012-07-18 11:29:34 |
显示代码纯文本
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("table2.in");
ofstream fout("table2.out");
int t,n,ans,x,y;
fin>>t;
for (int i=0; i<t; i++)
{
fin>>n;
ans=0;
for (int j=0; j<n; j++)
{
fin>>x>>y;
if ((x-170)*(x-170)+(y-30)*(y-30)<25)
ans+=3;
else if ((x-100)*(x-100)+(y-30)*(y-30)<100)
ans+=2;
else if ((x-30)*(x-30)+(y-30)*(y-30)<400)
ans+=1;
}
fout<<ans<<endl;
}
fin.close();
fout.close();
}