Project Euler 25

1000-digit Fibonacci number


The Fibonacci sequence is defined by the recurrence relation:

F n = F n−1 + F n−2, where F 1 = 1 and F 2 = 1.

Hence the first 12 terms will be:

F 1 = 1
F 2 = 1
F 3 = 2
F 4 = 3
F 5 = 5
F 6 = 8
F 7 = 13
F 8 = 21
F 9 = 34
F 10 = 55
F 11 = 89
F 12 = 144

The 12th term, F12, is the first term to contain three digits.

What is the index of the first term in the Fibonacci sequence to contain 1000 digits?


就是一个斐波拉契数列数列……

直接上代码:


# coding utf-8
# Desc : Project Euler Problem 19 Fibonacci number
# Date : 2015-12-23
# Author : Tina

def fibonacci(n):
    fac1 = 1
    fac2 = 1
    for x in xrange(2,n):
        tmp = fac2
        fac2 = fac1+fac2
        fac1 = tmp
    return fac2

n = 1
i = 5
while(n<1000):
    x = fibonacci(i)
    n = len(str(x))
    i = i+1
print i-1



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值