The length of the factorial of 1058 n

Source: Internet
Author: User

the length of the factorial of 1058 N

Base time limit:1 seconds space limit:131072 KB

Enter N to find The length of the ten -binary representation of the factorial of n . For example 6! = 720, length is 3.

Input

Input N (1 <= n <= 10^6)

Output

The length of the factorial of the output N

Input Example

6

Output Example

3

* n! the length is equal to log10 (n!)

ImportJava.util.*; Public classMain { Public Static voidMain (string[] args) {//TODO auto-generated Method StubScanner sc=NewScanner (system.in);  while(Sc.hasnext ()) {intn=Sc.nextint (); Doubleans; inti; Ans=1;  for(i=1;i<=n;i++) ans+=math.log10 (i); LongX= (Long) ans;        SYSTEM.OUT.PRINTLN (x);            } sc.close (); }}

The length of the factorial of 1058 n

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.