标签:多少 简单题 sam ati code 策略 put -- 使用
题目传送:http://acm.hdu.edu.cn/showproblem.php?pid=1846
1 #include<cstdio> 2 #include<iostream> 3 using namespace std; 4 5 int main() 6 { 7 int c,n,m; 8 scanf("%d",&c); 9 while(c--) 10 { 11 scanf("%d%d",&n,&m); 12 if(n%(m+1)==0) 13 printf("second\n"); 14 else 15 printf("first\n"); 16 } 17 return 0; 18 }
标签:多少 简单题 sam ati code 策略 put -- 使用
原文地址:http://www.cnblogs.com/Annetree/p/7106108.html