码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1018

时间:2014-10-13 00:45:58      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   sp   div   2014   log   amp   

运用斯特林公式。。。。。--!

bubuko.com,布布扣

 

#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#define PI 3.141592653
#define E 2.71828182
using namespace std;

int main(){
	int T; double n;
	scanf("%d",&T);
	while(T--){
		scanf("%lf",&n);
		int ans=(int)(log10(2*PI*n)/2+n*log10(n/E));
		printf("%d\n",ans+1);
	}
	return 0;
}

  

HDU 1018

标签:blog   http   io   os   sp   div   2014   log   amp   

原文地址:http://www.cnblogs.com/jie-dcai/p/4021290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!