比赛 20101119 评测结果 AAAAAAAAAA
题目名称 01进制数 最终得分 100
用户昵称 Achilles 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-19 10:11:40
显示代码纯文本
program binacy;
var
  last,now,temp,n,i:longint;
begin
  assign(input,'binacy.in');
  assign(output,'binacy.out');
  reset(input);
  rewrite(output);
  last:=1;
  now:=2;
  readln(n);
  if n<3 then begin
    if n=1 then writeln(1) else writeln(2);
  end
  else begin
  for i:=3 to n do
  begin
    temp:=(last+now)mod 15746;
    last:=now;
    now:=temp;
  end;
  writeln(now);
  end;
  close(input);
  close(output);
end.