比赛 NOIP2008集训模拟3 评测结果 AAAAAAAAAA
题目名称 硬币游戏 最终得分 100
用户昵称 BYVoid 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2008-11-12 10:06:25
显示代码纯文本
#include <iostream>

using namespace std;

int main()
{
	int N,a;
	freopen("coins.in","r",stdin);
	freopen("coins.out","w",stdout);
	scanf("%d",&N);
	for (int i=1;i<=N;i++)
	{
		scanf("%d",&a);
		if (a<=2)
			printf("Alice\n");
		else
			printf("Bob\n");
	}
	return 0;
}