题解 1474: 蓝桥杯基础练习VIP-阶乘计算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

高精度阶乘计算

摘要:解题思路:python里可以用math库里的factorial方法,就是高精度的参考代码:from math import factorialprint(factorial(int(input()))……

大数计算用Python爽到爆

摘要:import sys sys.set_int_max_str_digits(50000000)# 增加到50000000位 n=int(input()) s=1 for i in range(……