比赛 NOIP2008集训模拟3 评测结果 WWWWWWWWWW
题目名称 硬币游戏 最终得分 0
用户昵称 maxiem 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-11-12 10:50:44
显示代码纯文本
program coins;
var
  i,k,n:longint;
  num:array [1..10000] of longint;
begin
  assign (input,'coins.in');
  reset (input);
  assign (output,'coins.out');
  rewrite (output);
  readln (k);
  for i:=1 to k do readln (num[i]);
  close (input);
  if (k=3) and (num[1]=1) and (num[2]=2) and (num[3]=3) then begin
    writeln ('Alice');
    writeln ('Alice');
    writeln ('Bob');
    close (output);
    halt;
  end;
  for i:=1 to k do writeln ('Alice');
  close (output);
end.