zoukankan      html  css  js  c++  java
  • hdu 1018 Big Number (数学题)

    Problem Description

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

     

    Input

    Inputconsists of several lines of integer numbers. The first line contains aninteger n, which is the number of cases to be tested, followed by n lines, oneinteger 1 ≤ n ≤ 107 on each line.

     

    Output

    Theoutput contains the number of digits in the factorial of the integers appearingin the input.

     

    SampleInput

    2

    10

    20

     

    Sample Output

    7

    19

    /**************************************************

     //  不能直接算N!,数据规模  1<N<10^7  太大,超出  2^31  的范围,所以取对数函数
    //  N = M*10^n   n = log10(N)  log10()  函数在头文件cmath中

    984 MS,差点超时


     ************************************************/


    #include <iostream>
    #include<cmath>
    using namespace std;
    int main()
    {
        double sum;
        int T,n;
        cin>>T;
        while(T--)
        {
            cin>>n;
            sum = 1;
            for(int i = 1;i<=n;i++)
                sum+=log10(i);
            cout<<(int)sum<<endl;
        }
        return 0;
    }


  • 相关阅读:
    数据源ObjectDataSource的数据访问类的编写
    ASP.NET网页文本编辑器的使用
    装饰模式
    策略模式
    代理模式
    备份、还原数据库
    简单工厂和工厂模式
    ASP.NET上传多个文件
    数据库访问类的编写
    UVA 11069 A Graph Problem
  • 原文地址:https://www.cnblogs.com/gray1566/p/3704319.html
Copyright © 2011-2022 走看看