Preparando MOJI

XOR Equation

2000ms 262144K

Description:

Two positive integers a and b have a sum of s and a bitwise XOR of x. How many possible values are there for the ordered pair (a, b)?

Input:

The first line of the input contains two integers s and x (2 ≤ s ≤ 1012, 0 ≤ x ≤ 1012), the sum and bitwise xor of the pair of positive integers, respectively.

Output:

Print a single integer, the number of solutions to the given conditions. If no solutions exist, print 0.

Sample Input:

9 5

Sample Output:

4

Sample Input:

3 3

Sample Output:

2

Sample Input:

5 2

Sample Output:

0

Note:

In the first sample, we have the following solutions: (2, 7), (3, 6), (6, 3), (7, 2).

In the second sample, the only solutions are (1, 2) and (2, 1).

Informação

Codeforces

Provedor Codeforces

Código CF627A

Tags

dpmath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:03:59

Relacionados

Nada ainda