博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【51NOD-0】1130 N的阶乘的长度 V2(斯特林近似)
阅读量:6605 次
发布时间:2019-06-24

本文共 470 字,大约阅读时间需要 1 分钟。

【算法】数学

【题解】斯特林公式:

#include
#include
#include
using namespace std;const double pi=3.1415926535898,e=2.718281828459;int main(){ int t; scanf("%d",&t); for(int i=1;i<=t;i++) { long long n; scanf("%lld",&n); long long ans=0.5*log10(2.0*pi*n)+1.0*n*log10(1.0*n/e)+1; printf("%lld\n",ans); } return 0;}
View Code

 

转载于:https://www.cnblogs.com/onioncyc/p/6953519.html

你可能感兴趣的文章
Qt中插入html样式
查看>>
【译】Matplotlib:plotting
查看>>
Postgresql个人维护库时,出现有用户在连接又找不到这个用户是谁的强制中断连接的方法;...
查看>>
Implicit declaration of function 'BMKCoordinateForMapPoint' is invalid in C99
查看>>
Intent传参数
查看>>
MVC 和 Web Form
查看>>
2016阿里巴巴73款开源产品全向图
查看>>
[转]平面方程
查看>>
20165105 第八周学习总结
查看>>
Sublime Enter Key Setting自动缩进设置
查看>>
maven在win7系统上的安装
查看>>
实例讲解教你读懂路由表
查看>>
Glibc 和 uClibc
查看>>
VMware 虚拟机的虚拟磁盘编程知识点扫盲之二
查看>>
Have a Good Attitude 良好的态度
查看>>
win7 web开发遇到的问题-由于权限不足而无法读取配置文件,无法访问请求的页面...
查看>>
vs2012中自带IIS如何让其他电脑访问
查看>>
谁(何时)需要设置监听器(回调)
查看>>
关于termux在手机上搭载Linux系统,python,ssh
查看>>
Redux:异步操作
查看>>