<center style="color:rgb(51,51,51);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;background-color:rgb(255,255,255);">
</center>
问题 D: 数列游戏
时间限制: 1 Sec 内存限制: 128 MB</center>
题目描述
输入
输出
样例输入
1
2
样例输出
Alice
#include <stdio.h>
int main()
{
int n, t;
scanf("%d", &t);
while (t--)
{
scanf("%d", &n);
printf("Alice\n");
}
return 0;
}