记录编号 | 7916 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 硬币游戏 | 最终得分 | 100 | ||
用户昵称 | maxiem | 是否通过 | 通过 | ||
代码语言 | Pascal | 运行时间 | 0.032 s | ||
提交时间 | 2008-11-12 15:09:41 | 内存使用 | 0.11 MiB | ||
program coins; var i,n,k:longint; begin assign (input,'coins.in'); reset (input); assign (output,'coins.out'); rewrite (output); readln (n); for i:=1 to n do begin readln (k); if k>2 then writeln ('Bob') else writeln ('Alice'); end; close (input); close (output); end.