HDU1124

来源:互联网 发布:微商货源网源码 编辑:程序博客网 时间:2024/06/03 13:49

探究精神不够啊,看了半天没思路,就不看了,看到题解才发现是一道简单的数字游戏,

淡淡的忧伤:

N! = 1 * 2 * 3 * (2*2) * 5 * (2*3) * 7... 

产生10的原因是有2,5的因子,显然在N!中2的个数大于5的个数,所以只需求出5的个数即可 

求 N! (1*2*3*4*5*...*N)里有多少个5其实可以转化成: 
N!中:是5的倍数的数+是5^2的倍数的数+5^3..... 

如50!: 
含有10个5的倍数的数:5,15,20,25,30,35,40,45,50 【50/5=10】 
含有2个5^2的倍数的数:25,50【50/(5^2)=2】 
可见N!中一共有12个5相乘,那么尾0也必有12个 

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int T;
cin>>T;
while(T--)
{
int n;
cin>>n;
int res=0;
while(n)
{
res+=n/5;
n=n/5;
}
cout<<res<<endl;
}
return 0;
}

0 0
原创粉丝点击