标签:考试 题目 close can else limit title cst 大学
http://acm.hdu.edu.cn/showproblem.php?pid=1846
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
令f(n)=n%(m+1),
若 f(n)!=0,则先手必胜;否则,先手必败
#include<cstdio> using namespace std; int main() { int t; scanf("%d",&t); int n,m; while(t--) { scanf("%d%d",&n,&m); if(n%(m+1)) printf("first\n"); else printf("second\n"); } }
标签:考试 题目 close can else limit title cst 大学
原文地址:http://www.cnblogs.com/TheRoadToTheGold/p/6740670.html