Preparando MOJI

Maxim and Matrix

2000ms 262144K

Description:

Maxim loves to fill in a matrix in a special manner. Here is a pseudocode of filling in a matrix of size (m + 1) × (m + 1):

Maxim asks you to count, how many numbers m (1 ≤ m ≤ n) are there, such that the sum of values in the cells in the row number m + 1 of the resulting matrix equals t.

Expression (x xor y) means applying the operation of bitwise excluding "OR" to numbers x and y. The given operation exists in all modern programming languages. For example, in languages C++ and Java it is represented by character "^", in Pascal — by "xor".

Input:

A single line contains two integers n and t (1 ≤ n, t ≤ 1012, t ≤ n + 1).

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

Output:

In a single line print a single integer — the answer to the problem.

Sample Input:

1 1

Sample Output:

1

Sample Input:

3 2

Sample Output:

1

Sample Input:

3 3

Sample Output:

0

Sample Input:

1000000000000 1048576

Sample Output:

118606527258

Informação

Codeforces

Provedor Codeforces

Código CF261C

Tags

constructive algorithmsdpmath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:41:28

Relacionados

Nada ainda