记录编号 7887 评测结果 AAAAAAAAAA
题目名称 硬币游戏 最终得分 100
用户昵称 Gravatar苏轼 是否通过 通过
代码语言 Pascal 运行时间 0.032 s
提交时间 2008-11-12 11:37:20 内存使用 0.11 MiB
显示代码纯文本
program cch(input,output);
var
 i,k,x:longint;
begin
 assign(input,'coins.in');
 assign(output,'coins.out');
 reset(input);
 rewrite(output);
 readln(k);
 for i:=1 to k do
  begin
   readln(x);
   if x<=2 then writeln('Alice')
    else writeln('Bob');
  end;
 close(input);
 close(output);
end.