시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB95332842.424%

문제

Consider the following function f(X), which takes a single positive integer as argument, and returns an integer.

function f(X):
    iterations := 0
    while X is not 1:
        if X is even:
            divide X by 2
        else:
            add 1 to X
        add 1 to iterations
    return iterations

It can be shown that for any positive integer X, this function terminates. Given an interval [L, R], compute the sum

S = f(L) + f(L + 1) + · · · + f(R − 1) + f(R).

입력

The first and only line of input contains two integers L and R (1 ≤ L ≤ R ≤ 1018).

출력

Output the result S modulo the prime 109 + 7.

예제 입력 1

1 127

예제 출력 1

1083

예제 입력 2

74 74

예제 출력 2

11

출처

Contest > KTH Challenge > KTH Challenge 2017 B번

  • 문제를 만든 사람: Johan Sannemo