[EASY] Small Factorials - CodeChef
[EASY] Small Factorials – CodeChef
Here is the problem: http://www.codechef.com/problems/FCTRL2/ And here is my solution. I get 0.04s with this code.
import math length = int(raw_input()) for i in range(0, length): number = int(raw_input()) print math.factorial(number)
View On WordPress











