nyoj 23 Bash Game

http://acm.nyist.net/JudgeOnline/problem.php?pid=23

#include <stdio.h>
int main()
{
	long m,n,r;
	int t;
	scanf("%d",&t);   //题目 两人轮流抽一堆物品共n个  每次至少抽一个最多抽m个 :Winner为先抽完的人 
	while(t--)			//当剩下m+1时 不管先手的怎么抽都是输 
	{ 
		scanf("%ld%ld",&n,&m);
		if(n%(m+1))       //   n=r(m+1)+s 若s!=0 则先手的把余数s抽掉								 
		{									 //后手的不管怎么抽 都会有余数s 并且r每次都减1 
			printf("Win\n");					//先手的每次都把余数s抽掉 留下的状态为 n=r'(m+1) 最终r'=1 无论后手的怎么抽都是输 
			
		}
		else
		printf("Lose\n");
	}
	return 0;
}


你可能感兴趣的:(nyoj 23 Bash Game)