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

hide comments
tutshimanshu: 2017-03-07 08:35:10

not working yar
please help big int in compulsory if i will do it in other way then

avi_02: 2017-03-04 21:19:42

my code is right as i have tried to run on other platform but here shows wrong ans. what can i do? it also not show what wrong..

dcirkveni2020: 2017-02-24 21:38:01

Python 3.5 can be used without breaking the time limit.

aayushi24: 2017-02-20 05:17:48

I'm getting correct answer at ideone but here it shows segmentation fault. Can anyone help me with the reason.

p3arl_03: 2017-02-16 11:29:26

Any other solution other than biginteger class?

pushkars: 2017-02-15 14:33:57

thanks akhil9093, biginteger class helped, Cheers

akhil9093: 2017-02-05 19:07:59

not that simple but my ac in one go ....but use biginteger class..that would really help..!!!otherwise best of luck

kudesiaji: 2017-01-18 13:39:11

I'm getting SIGSEGV error. Can anyone help me as to what could be the reason?

cipher_097: 2017-01-14 12:27:40

Use basic multiplication, read article on geeksforgeeks for further refrence.

tawhidkuet04: 2017-01-07 18:52:38

Basic Multiplication :)


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