标签:des style blog http color io os java ar
Time Limit: 500/200 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 1097 Accepted Submission(s): 596
1 #include<cstdio> 2 int main() 3 { 4 int t,n,m,k; 5 scanf("%d",&t); 6 while(t--){ 7 scanf("%d%d%d",&n,&k,&m); 8 int ans=0; 9 if((n*k)%m) ans=1; 10 if(n>=m)printf("%d\n",ans+((n*k)/m)); 11 else printf("%d\n",k); 12 } 13 return 0; 14 }
标签:des style blog http color io os java ar
原文地址:http://www.cnblogs.com/gongxijun/p/3975771.html