记录编号 89262 评测结果 AAAAAAAAAA
题目名称 C4炸弹 最终得分 100
用户昵称 GravatarLetter zZZz 是否通过 通过
代码语言 C++ 运行时间 0.063 s
提交时间 2014-02-28 21:23:42 内存使用 0.31 MiB
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
	ifstream fin ("c4.in");
	ofstream fout ("c4.out");
	int L,count=0,n,x,y,r,a,b;
	char m;
	fin>>x>>y>>r>>n;
	int R=r*r;
	for (int i=0;i<n;i++)
	{
		fin>>m>>a>>b;
		L=(x-a)*(x-a)+(y-b)*(y-b);
		if (m=='P'&&L<=R) count++;
	}
	fout<<count;
	return 0;
}