标签:ash out ble problem blog 时间 printf input 16px
第1行:一个数T,表示后面用作输入测试的数的数量。(1 <= T <= 10000)
第2 - T + 1行:每行2个数N,K。中间用空格分隔。(1 <= N,K <= 10^9)
共T行,如果A获胜输出A,如果B获胜输出B。
4
3 2
4 2
7 3
8 3
B A A B
【思路】
若B想要获胜,那么每次给A剩下的石头必须为k+1颗石头。
因为如果剩下k+1颗石头。当A拿最少1颗时,B可以将剩下的全部拿走。A那最多k颗时,B也能全部拿走。
所以如果n%(k+1)==0B必胜。
【code】
#include<iostream> #include<cstdio> using namespace std; int t,n,k; int main() { scanf("%d",&t); while(t--) { scanf("%d%d",&n,&k); if(n<k) printf("A\n"); else { if(n%(k+1)==0) printf("B\n"); else printf("A\n"); } } return 0; }
标签:ash out ble problem blog 时间 printf input 16px
原文地址:http://www.cnblogs.com/zzyh/p/6962261.html