1181: 不容易系列2 摘要:解题思路:两种方法 :一种用数学组合,一种用递归注意事项:参考代码:数学方法:def f(x): s=1 for i in range(1,x): s *=i …… 题解列表 2022年02月18日 0 点赞 0 评论 163 浏览 评分:0.0
不容易系列2 摘要:解题思路:注意事项:参考代码:#递归写法def f(x): if x ==1 : return 0 elif x == 2: return 1 else…… 题解列表 2023年10月26日 0 点赞 0 评论 59 浏览 评分:0.0