比赛 NOIP_1 评测结果 AWWWWWWWWA
题目名称 圆弦 最终得分 20
用户昵称 Achilles 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-09-03 21:57:37
显示代码纯文本
program asdgfasdgf;
var
  n,i:integer;
  max:longint;
  sz:array[0..1000]of longint;
begin
  assign(input,'circlex.in');
  assign(output,'circlex.out');
  reset(input);
  rewrite(output);
  readln(n);
  if n=0 then writeln(1);
  if n=1 then writeln(1);
  if n=2 then writeln(2);
  if n=3 then writeln(4);
  if n=4 then writeln(9);
  close(input);
  close(output);
end.