HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Array and Matrices > problem:


50342 - 100 Factorial

Guest
• Review clarifications (3)

Volume problems

• 50669 - Area of an Irregular Polygon
• 50860 - Number of Student Certificates
• 50444 - n digit kth number divisible...
• 50865 - Apartment Building Adminis...
• 51011 - Decoding the Path
• 51019 - Finding the hidden message
• 51002 - The most successful classes
• 50525 - Ordering Pizza
• 50342 - 100 Factorial
• 50524 - Elevator
• 50531 - File Decryption
• 50758 - National Elections - Revisited
• 50687 - Pascal Triangle - 2
• 50756 - Average of the Nth Student
• 50457 - The Number of Winners
• 50752 - Student Groups
• 50451 - Processing Cost

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

100 Factorial

  In mathematics, n factorial is the multiplication of all the numbers from 1 to n. e.g.
     5!=1*2*3*4*5
  and that is equal to 120.

Question:
Write aprogram that calculates n factorial where n is between 1 and 100.
Note: 100 factorial is 158 digit long number. So, you cannot use standard data types to store such big numbers. For C, C++ you have to use arrays.

Input specification
You will be given just one number (n) where 1 ≤ n ≤ 100.

Output specification
Calculate and show the result of n!.

 Sample Input I   
  10
 Sample Input II   
  20
 Sample Output I   
  3628800
 Sample Output II   
  2432902008176640000   


Для отправки решений необходимо выполнить вход.

www.contester.ru