记录编号 40949 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 打乒乓球 最终得分 100
用户昵称 Gravatar英雄寞乌云然 是否通过 通过
代码语言 Pascal 运行时间 0.004 s
提交时间 2012-07-19 17:42:30 内存使用 0.17 MiB
显示代码纯文本
program fl;
var
r,s:array[1..3] of longint;
a,b,c,d,n,h,i,k,j,m,zl:longint;
begin
assign(input,'table2.in');
reset(input);
assign(output,'table2.out');
rewrite(output);
read(n);
for a:=1 to n do
  begin
   read(h); zl:=0;
   for b:=1 to h do
    begin
     read(i,j);
     if ((i-30)*(i-30)+(j-30)*(j-30))<400 then zl:=zl+1;
     if ((i-100)*(i-100)+(j-30)*(j-30))<100 then zl:=zl+2;
     if ((i-170)*(i-170)+(j-30)*(j-30))<25 then zl:=zl+3;
    end;
    writeln(zl);

  end;
close(input);
close(output);
end.