• 1952 How Many Fibs

    时间限制 : 2000/1000 MS(Java/Others) | 内存限制 : 131072/65536 KB(Java/Others)

    提交数 : 10 | 通过数 : 3

    题目描述

    Recall the definition of the Fibonacci numbers: 
    f(1) = 1 
    f(2)= 2 
    f(n) = f(n-1) + f(n-2) (n >= 3) 
    
    Given two numbers a and b, calculate how many Fibonacci numbers are in the range [a, b].

    输入要求

    The input contains several test cases. Each test case consists of two non-negative integer numbers a and b. Input is terminated by a = b = 0. Otherwise, a <= b <= 10^100. The numbers a and b are given with no superfluous leading zeros.

    输出要求

    For each test case output on a single line the number of Fibonacci numbers fi with a <= fi <= b.

    输入样例

    10 100
    1234567890 9876543210
    0 0
    

    输出样例

    5
    4
    

    提示


    来源

    University of Ulm Local Contest 2000

    [ 返回顶端 ] | [ 代码提交 ] | [ 统计数据 ] | [ 历史提交 ]