51Nod 1003 阶乘后面0的数量 | 思维

Posted kimsimple

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51Nod 1003 阶乘后面0的数量 | 思维相关的知识,希望对你有一定的参考价值。

 

 

 

题意:n的阶乘后面0的个数,如果直接算出阶乘再数0的数量一定会超时的。
为10=2*5,所以求出5贡献的次数就行。
#include "bits/stdc++.h"
using namespace std;
#define LL long long
#define INF 0x3f3f3f3f3f
#define PI acos(-1)
#define N 510
LL arr[N];
int main()
{
    int n,k;
    while(~scanf("%d",&n)){
        int sum=0;
        while(n>0){
            sum+=n/5;
            n/=5;
        }
        printf("%d\\n",sum);
    }
    return 0;
}

 

以上是关于51Nod 1003 阶乘后面0的数量 | 思维的主要内容,如果未能解决你的问题,请参考以下文章

51NOD-1003-阶乘后面0的数量

51nod 1003 阶乘后面0的数量

51nod 1003 阶乘后面0的数量

1003 阶乘后面0的数量

51nod 1130 N的阶乘的长度(斯特林近似)

51nod 1130 N的阶乘的长度 V2(斯特林近似)