码迷,mamicode.com
首页 > 其他好文 > 详细

hdu-1124(数学问题,求n!的尾零的个数)

时间:2018-11-04 14:11:31      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:hdu   scanf   数学   iostream   pac   while   五个   using   problem   

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1124

思路:每五个数1个0,5个5就2个0(不用管2,一定充足)

#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
typedef long long LL;
int main(void)
{
    LL n,j;
    int tim,ans,t,i;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%lld",&n);
        j=1;tim=0;
        while(j<=n)
        {
            j*=5;tim++;
        }
        ans=0;
        for(i=1;i<tim;i++)
        {
            ans+=n/pow(5,i);
        }
        printf("%d\n",ans);
    }
    return 0;
}

 

hdu-1124(数学问题,求n!的尾零的个数)

标签:hdu   scanf   数学   iostream   pac   while   五个   using   problem   

原文地址:https://www.cnblogs.com/2018zxy/p/9903589.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!