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(斯特林近似)的主要内容,如果未能解决你的问题,请参考以下文章