列表

详情


NC15064. 进击吧!阶乘

描述

给定一个整数N0≤N≤10000),求取N的阶乘

输入描述

多个测试数据,每个测试数据输入一个数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())

上一题