标签:des style blog http color java os io strong
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2807 Accepted Submission(s): 1804
1 #include<cstdio> 2 #include<cstring> 3 #include<stdlib.h> 4 #include<algorithm> 5 using namespace std; 6 int main() 7 { 8 //freopen("in.txt","r",stdin); 9 int kase,n; 10 scanf("%d",&kase); 11 while(kase--) 12 { 13 int ans=0; 14 scanf("%d",&n); 15 while(n) 16 { 17 ans=ans+n/5; 18 n=n/5; 19 } 20 printf("%d\n",ans); 21 } 22 return 0; 23 }
标签:des style blog http color java os io strong
原文地址:http://www.cnblogs.com/clliff/p/3932859.html