题解 | #递推数列#
递推数列
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
联想公司福利 1493人发布