问题 D: 数列游戏 时间限制: 1 Sec 内存限制: 128 MB 题目描述 输入 输出 样例输入 1 2 样例输出 Alice #include <stdio.h> int main() { int n, t; scanf("%d", &t); while (t--) { scanf("%d", &n); printf("Alice\n"); } return 0; }