HDU-1018 BigNumber(斯特林近似)

Posted duskob

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU-1018 BigNumber(斯特林近似)相关的知识,希望对你有一定的参考价值。

题目链接

斯特林近似求数位长度经典题,更新板子顺手切了

#include <cstdio>
#include <cmath>
#include <cstring>
#include <iostream>
#include <algorithm>
#define DBG(x) cerr << #x << " = " << x << endl;
const double PI = acos(-1.0);
using namespace std;

int t,n;

int main(){
    scanf("%d",&t);
    while(t--){
        scanf("%d",&n);
        printf("%d
",(int)((0.5*log(2*PI*n)+n*log(n)-n)/(log(10)))+1);
    }
    return 0;
}

  

以上是关于HDU-1018 BigNumber(斯特林近似)的主要内容,如果未能解决你的问题,请参考以下文章

hdu1018--斯特灵公式

HDU 1018 Big Number

51nod1130(斯特林近似)

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

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

BZOJ1130 N的阶乘的长度 V2(斯特林近似)