标签:des style blog http color java 使用 os
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6433 Accepted Submission(s):
4293
1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<math.h> 4 5 int main(){ 6 int t, m, n, i; 7 scanf("%d", &t); 8 while(t --){ 9 scanf("%d %d", &n, &m); 10 if(n % (1 + m) == 0){ 11 printf("second\n"); 12 } 13 else{ 14 printf("first\n"); 15 } 16 } 17 return 0; 18 }
标签:des style blog http color java 使用 os
原文地址:http://www.cnblogs.com/xiaoyeye/p/3885752.html