CF1840B.Binary Cafe

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Once upon a time, Toma found himself in a binary cafe. It is a very popular and unusual place.

The cafe offers visitors kk different delicious desserts. The desserts are numbered from 00 to k1k-1 . The cost of the ii -th dessert is 2i2^i coins, because it is a binary cafe! Toma is willing to spend no more than nn coins on tasting desserts. At the same time, he is not interested in buying any dessert more than once, because one is enough to evaluate the taste.

In how many different ways can he buy several desserts (possibly zero) for tasting?

输入格式

The first line of the input contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases.

Then follows tt lines, each of which describes one test case.

Each test case is given on a single line and consists of two integers nn and kk ( 1n,k1091 \le n, k \le 10^9 ) — the number of coins Toma is willing to spend and the number of desserts in the binary cafe.

输出格式

Output tt integers, the ii -th of which should be equal to the answer for the ii -th test case — the number of ways to buy desserts for tasting.

输入输出样例

  • 输入#1

    5
    1 2
    2 1
    2 2
    10 2
    179 100

    输出#1

    2
    2
    3
    4
    180

说明/提示

Variants for 1st sample: {}, {1}

Variants for 2nd sample: {}, {1}

Variants for 3rd sample: {}, {1}, {2}

Variants for 4th sample: {}, {1}, {2}, {1, 2}

首页