比赛 10101115 评测结果 WWWWWTTTTT
题目名称 牛宫 最终得分 0
用户昵称 nick09 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-15 09:48:35
显示代码纯文本
var i,j,k,n,m,x,y,s,max:longint;
    a:array[0..200,0..200]of real;
    tot:real;
begin
assign(input,'long.in');reset(input);
assign(output,'long.out');rewrite(output);
readln(n,m);
for j:=1 to m do
  for i:=1 to n do
     read(a[i,j]);

max:=0;
for i:=1 to n do
 for j:=1 to m do
   begin
   tot:=0; s:=0;
   for x:=i to n do
    begin
      for y:=j to m do
        begin
        tot:=tot+a[x,y];
        s:=s+1;

        end;

     if (s>max)and(tot>0) then max:=s;
   end;
   end;
writeln(max);
end.