阶乘后面0的数量

Posted NWU_ACM

tags:

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

技术分享
#include <bits/stdc++.h>
#define _xx ios_base::sync_with_stdio(0);cin.tie(0);
using namespace std;
typedef long long ll;
int main()
{
    ll n;
    cin >> n;
    int k = 0, m = 5, ans = 0;
    while(m <= n) ans += n/m, m *= 5;
    cout << ans << endl;
    return 0;
}
View Code

 

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

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

51nod 1003 阶乘后面0的数量

阶乘后面0的数量

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

阶乘后面0的数量

51Nod 1003 阶乘后面0的数量(数学,思维题)