CF215E.Periodical Numbers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A non-empty string ss is called binary, if it consists only of characters "0" and "1". Let's number the characters of binary string ss from 1 to the string's length and let's denote the ii -th character in string ss as sis_{i} .

Binary string ss with length nn is periodical, if there is an integer 1<=k<n such that:

  • kk is a divisor of number nn
  • for all 1<=i<=nk1<=i<=n-k , the following condition fulfills: si=si+ks_{i}=s_{i+k}

For example, binary strings "101010" and "11" are periodical and "10" and "10010" are not.

A positive integer xx is periodical, if its binary representation (without leading zeroes) is a periodic string.

Your task is to calculate, how many periodic numbers are in the interval from ll to rr (both ends are included).

输入格式

The single input line contains two integers ll and rr ( 1<=l<=r<=10181<=l<=r<=10^{18} ). The numbers are separated by a space.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输出格式

Print a single integer, showing how many periodic numbers are in the interval from ll to rr (both ends are included).

输入输出样例

  • 输入#1

    1 10
    

    输出#1

    3
    
  • 输入#2

    25 38
    

    输出#2

    2
    

说明/提示

In the first sample periodic numbers are 33 , 77 and 1010 .

In the second sample periodic numbers are 3131 and 3636 .

首页