比赛 20101116 评测结果 AATTTTTTTA
题目名称 剪切矩形 最终得分 30
用户昵称 wo shi 刘畅 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-16 10:04:20
显示代码纯文本
var
  n,m,i,j,k,l,total:longint;
  s:array[0..1000]of string;

function yes(a,b,c,d:longint):boolean;
var
  i,j:longint;
begin
  for i:=a to c do
   for j:=b to d do
   if s[i,j]='*' then exit(false);
   exit(true);
end;

begin
  assign(input,'rectangle.in'); reset(input);
  assign(output,'rectangle.out'); rewrite(output);
  readln(n,m);
  for i:=1 to n do readln(s[i]);
  for i:=1 to n do
   for j:=1 to m do
    for k:=i to n do
     for l:=j to m do
      if yes(i,j,k,l) then inc(total);
  writeln(total);
  close(input);
  close(output);
end.