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

Sample input:
4
1
2
5
3

Sample output:

1
2
120
6

Added by:adrian
Date:2004-05-28
Time limit:1s
Source limit:2000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All

hide comments
2017-07-10 23:13:50
Im getting the correct answer for everything even 0,1 and 100. Why is it showing wrong answer ? :/
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.
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?
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.
Problems people might encounter:
1. 100!(therefore the large number)
2. 0!(let it go)
3. Print endline after printing numbers. People face issues with that. Cheers. :")
2017-06-18 11:24:49
basic qn....AC in one go ;-)
2017-06-17 19:18:01
If u are a c/c++ programmer just read their tutorial of same problem.
2017-06-05 13:51:04
Note for golang: There is a method called "MulRange" somewhere.
2017-06-03 16:58:02
0.00s cpp
2017-05-25 14:13:58
what the hell i submitted the same solution in cpp it gave me WA thrice but only changing headers and converted to C it gives me AC!! why this happens
2017-05-23 20:50:35
@keerthi_97524:Factorial of zero is one
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.