ZOJ Problem Set - 1526

来源:互联网 发布:mac怎么退出后台程序 编辑:程序博客网 时间:2024/06/13 06:02

In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you are given a number, you have to determine the number of digits in the factorial of the number.


Input

Input consists of several lines of integer numbers. The first line contains an integer n, which is the number of cases to be tested, followed by n lines, one integer 1 <= n <= 10^7 on each line.


Output

The output contains the number of digits in the factorial of the integers appearing in the input.


Sample Input

2
10
20


Sample Output

7
19


#include<stdio.h>#include<math.h>double PI = 3.1415926;double E = 2.71828182;int main(){int n;scanf("%d",&n);while(n--){int m;double result;scanf("%d",&m);result=log10(2*PI*m)/2+m*log10(m/E);printf("%d\n",(int)result+1);}return 0;}

朴素公式为:

log10(n!)=log10(1*2*3…*n)=log10(1)+log10(2)+…+log10(n)

《计算机程序设计艺术》中给出了另一个公式

n! = sqrt(2*π*n) * ((n/e)^n) * (1+ 1/(12*n) + 1/(288*n*n) + O(1/n^3))

π = acos(-1)

e = exp(1)

两边对10取对数

忽略log10(1 + 1/(12*n) +1/(288*n*n) + O(1/n^3)) ≈ log10(1) = 0

得到公式

log10(n!) = log10(sqrt(2 *pi * n)) + n * log10(n / e)

 

double PI = 3.1415926;

double E = 2.71828182;




0 0
原创粉丝点击