FCTRL2 - Small factorials
You are asked to calculate factorials of some small positive integers.
Input
An integer t, 1 ≤ t ≤ 100, denoting the number of testcases, followed by t lines, each containing a single integer n, 1 ≤ n ≤ 100.
Output
For each integer n given at input, display a line with the value of n!
Example
Input: 4 1 2 5 3 Output: 1 2 120 6
hide comments
chetan_555:
2017-08-24 17:15:30
use bigintegers and implement in java |
|
vanshajchadha:
2017-07-21 08:02:09
why is my answer showing the factorial of large numbers as 0 when i am evaluating the factorial recursively.
|
|
rahulnair95:
2017-07-10 23:13:50
Im getting the correct answer for everything even 0,1 and 100. Why is it showing wrong answer ? :/ |
|
bobjarvis:
2017-07-03 21:22:31
vishwajeet404 - to keep people from putting in all the factorials from 1 to 100 as literals in an array and then just pulling them out of the array. |
|
vishwajeet404:
2017-07-03 20:34:52
I had to fight tooth and nail to get the source code to be smaller than 2000B, why such a small limit? |
|
shivltd:
2017-06-21 19:24:11
True happiness is completing this in c++ by creating your own big number range from scratch and no resources.
|
|
tusharuppal:
2017-06-18 11:24:49
basic qn....AC in one go ;-) |
|
bhawna_123:
2017-06-17 19:18:01
If u are a c/c++ programmer just read their tutorial of same problem.
|
|
leafbebop:
2017-06-05 13:51:04
Note for golang: There is a method called "MulRange" somewhere. |
|
kartiks22:
2017-06-03 16:58:02
0.00s cpp
|
Added by: | adrian |
Date: | 2004-05-28 |
Time limit: | 1s |
Source limit: | 2000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |