记录编号 |
227642 |
评测结果 |
AAAAAAAAAA |
题目名称 |
C4炸弹 |
最终得分 |
100 |
用户昵称 |
liu_runda |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.033 s |
提交时间 |
2016-02-18 19:22:08 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
int _x,_y,_r;
double dis(int x,int y){
return sqrt((x-_x)*(x-_x)+(y-_y)*(y-_y));
}
int main(){
freopen("c4.in","r",stdin);
freopen("c4.out","w",stdout);
scanf("%d %d %d",&_x,&_y,&_r);
int n,tot=0;
scanf("%d",&n);
char buf[4];int x,y;
for(int i = 0;i<n;++i){
scanf("%s %d %d",buf,&x,&y);
if(buf[0]=='P'&&dis(x,y)<=_r){
tot++;
}
}
printf("%d",tot);
fclose(stdin);fclose(stdout);
return 0;
}