题解 1171: 蟠桃记

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

筛选

蟠桃记——计算原来的桃子数

摘要:解题思路:逆向思维注意事项:参考代码:while True:    try:        n = int(input())        s = 1        for i in range(n-……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:while True:     try:         n=int(input())         ls=[1]         for i in&nb

1171: 蟠桃记

摘要:解题思路:从最后一天往前推注意事项:参考代码:while True:    n=int(input())    s=1    for i in range(n-1):        s=(s+1)*2……

python解决蟠桃记

摘要:解题思路:递归即可参考代码:def PanTao(n, sum):     if n == 1:         return sum     else:         sum =&n