标签:game miss 整数 other 数据 inpu stream 中国 bottom
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 11663 Accepted Submission(s): 7852
d.
1、 本游戏是一个二人游戏;
2、 有一堆石子一共有n个;
3、 两人轮流进行;
4、 每走一步可以取走1…m个石子;
5、 最先取光石子的一方为胜;
s.Bash Game
1 #include<iostream> 2 #include<stdio.h> 3 using namespace std; 4 5 int main(){ 6 int C; 7 int n,m; 8 9 scanf("%d",&C); 10 11 while(C--){ 12 scanf("%d%d",&n,&m); 13 14 if(n%(m+1)>0){ 15 printf("first\n"); 16 } 17 else{ 18 printf("second\n"); 19 } 20 21 } 22 23 return 0; 24 }
标签:game miss 整数 other 数据 inpu stream 中国 bottom
原文地址:http://www.cnblogs.com/bofengyu/p/6782788.html