CF276D.Little Girl and Maximum XOR

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A little girl loves problems on bitwise operations very much. Here's one of them.

You are given two integers ll and rr . Let's consider the values of for all pairs of integers aa and bb (l<=a<=b<=r)(l<=a<=b<=r) . Your task is to find the maximum value among all considered ones.

Expression means applying bitwise excluding or operation to integers xx and yy . The given operation exists in all modern programming languages, for example, in languages CC ++ and JavaJava it is represented as "^", in PascalPascal — as «xor».

输入格式

The single line contains space-separated integers ll and rr ( 1<=l<=r<=10181<=l<=r<=10^{18} ).

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.

输出格式

In a single line print a single integer — the maximum value of for all pairs of integers aa , bb (l<=a<=b<=r)(l<=a<=b<=r) .

输入输出样例

  • 输入#1

    1 2
    

    输出#1

    3
    
  • 输入#2

    8 16
    

    输出#2

    31
    
  • 输入#3

    1 1
    

    输出#3

    0
    
首页