mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
53497060fc
4300-4399
24 lines
486 B
C++
24 lines
486 B
C++
#include <cstdio>
|
|
#include <algorithm>
|
|
using namespace std;
|
|
int n,k;
|
|
int main(void)
|
|
{
|
|
int cas = 1;
|
|
while(scanf("%d %d",&n,&k)!=EOF){
|
|
printf("Case %d: ",cas++);
|
|
int r = n - 2 * k;
|
|
int ans = 1;
|
|
bool sig = true;
|
|
if(r&1){
|
|
if(k == 1) sig = false;
|
|
else if(r == 1) ans = k;
|
|
}
|
|
if(sig)
|
|
printf("Alice %d\n",ans);
|
|
else
|
|
puts("Bob");
|
|
}
|
|
return 0;
|
|
}
|