题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1846
题目:
1 #include <cstdio> 2 3 int t, n, m; 4 5 int main() { 6 scanf("%d", &t); 7 while(t--) { 8 scanf("%d%d", &n, &m); 9 if(n % (m + 1) == 0) { 10 printf("second\n"); 11 } else { 12 printf("first\n"); 13 } 14 } 15 return 0; 16 }
原文:https://www.cnblogs.com/Dillonh/p/8996389.html