比赛 20110728 评测结果 AATEEEEEEE
题目名称 蝗灾 最终得分 20
用户昵称 echo 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-07-28 11:56:31
显示代码纯文本
program locust;
var
  w,n,i,j,k,l,ans:longint;
  x,y,z,x1,y1,x2,y2:longint;
  g:array[1..2000,1..2000] of longint;

procedure add;
  begin
     readln(x,y,z);
     g[x,y]:=g[x,y]+z;
  end;
function qus:longint;
  begin
    ans:=0;
    readln(x1,y1,x2,y2);
    for k:=x1 to x2 do
      for j:=y1 to y2 do
         ans:=ans+g[k,j];
    writeln(ans);
  end;
begin
  assign(input,'locust.in');
  assign(output,'locust.out');
  reset(input);
  rewrite(output);
  readln(w);
  readln(n);
  for i:=1 to n do
    begin
      read(l);
      if l=1 then add
             else qus;
    end;
  close(input);
  close(output);
end.