题解 | #递推数列#

递推数列

https://www.nowcoder.com/practice/d0e751eac618463bb6ac447369e4aa25

def nextnum(a,b,p,q):
    return p*a+q*b

while True:
    try:
        a0,a1,p,q,k=map(int,input().strip().split())
        list1=[]
        list1.append(a0)
        list1.append(a1)
        for i in range(2,k+1):
            list1.append(nextnum(list1[i-1],list1[i-2],p,q))
        print(list1[k]%10000)
    except EOFError:
        break

全部评论

相关推荐

10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务