#include<iostream>
#include<cstdio>
using namespace std; int main()
{
int n;
while(scanf("%d",&n)&&n)
{//alice先把环破坏,变成链,然后bob只要在链中间取1或2个
//连续的coins,让链变成左右对称的两条,bob就必胜
if(n==1||n==2)
printf("Alice\n");
else printf("Bob\n");
}
return 0;
}
相关文章
- 02-23hdu 3951 - Coin Game(找规律)
- 02-23kiki's game HDU - 2147(找规律)
- 02-23poj 2328(找规律,n在toolow的最大数和toohigh的最小数之间)
- 02-23poj 3372(找规律)
- 02-23POJ - 2586 Y2K Accounting Bug (找规律)
- 02-23Light OJ 1296:Again Stone Game(SG函数打表找规律)
- 02-232018.09.01 poj3071Football(概率dp+二进制找规律)
- 02-23POJ 2599 A funny game#树形SG(DFS实现)
- 02-23HDU 4388 Stone Game II {博弈||找规律}
- 02-234.1.2 A Funny Game(POJ 2484)