NC15064. 进击吧!阶乘
描述
输入描述
多个测试数据,每个测试数据输入一个数N
输出描述
每组用一行输出N的阶乘
示例1
输入:
1 2 3
输出:
1 2 6
Python3(3.5.2) 解法, 执行用时: 50ms, 内存消耗: 3456K, 提交时间: 2018-03-04 21:20:29
import math print(math.factorial(int(input())))
Python(2.7.3) 解法, 执行用时: 73ms, 内存消耗: 2920K, 提交时间: 2018-04-10 20:06:36
import math print math.factorial(input())