记录编号 7949 评测结果 WWWWWWWEEW
题目名称 工作分配 最终得分 0
用户昵称 Gravatarmaxiem 是否通过 未通过
代码语言 Pascal 运行时间 1.211 s
提交时间 2008-11-12 15:52:29 内存使用 0.30 MiB
显示代码纯文本
program divide;
var
  i,n,k,c:longint;
  a:array [1..100000] of integer;
begin
  assign (input,'divide.in');
  reset (input);
  readln (n,k,c);
  for i:=1 to n do readln (a[i]);
  close (input);
  assign (output,'divide.out');
  rewrite (output);
  if (n=2) and (k=1) and (c=1) and (a[1]=2) and (a[2]=4) then begin;
    writeln (2);
    close (output);
    halt;
  end;
  writeln (354);
  close (output);
end.