408145: GYM102994 J Gaokao

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

J. Gaokaotime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

Roundgod is about to attend Gaokao (National Unified Examination for Admissions to General Universities and Colleges) and his dream school is Zhejiang University. He sees an interesting problem while he is studying Math, which is a problem related to Pascal's Triangle.

The definition of Pascal's Triangle is given below:

The first element and the last element of each row in Pascal's Triangle is $$$1$$$, and the $$$m_{th}$$$ element of the $$$n_{th}$$$ row equals to the sum of the $$$m_{th}$$$ and the ($$$m-1$$$)$$$_{th}$$$ element of the ($$$n-1$$$)$$$_{th}$$$ row. Here's an example of a 5 levels Pascal's Triangle .

$$$$$$1$$$$$$ $$$$$$1\quad 1$$$$$$ $$$$$$1 \quad2\quad 1$$$$$$ $$$$$$1 \quad3 \quad3\quad 1$$$$$$ $$$$$$1 \quad4\quad 6\quad 4 \quad1$$$$$$

In the task, Roundgod is required to calculate how many elements in the $$$126_{th}$$$ row of Pascal's Triangle are odd numbers.

After solving it, Roundgod thinks of a harder version of this problem. He gives you many requests about similar questions but the row number will be bigger. Please calculate that how many elements in the $$$k_{th}$$$ row of Pascal's Triangle are odd numbers.

Input

There are multiple test cases. The first line of the input contains an integer $$$T$$$ ($$$1 \le T \le 500$$$), indicating the number of test cases. For each test case:

The first and only line contains an integer $$$K$$$$$$(K\leq 10^{18})$$$, indicating the required row number in Pascal's Triangle.

Output

For each test case, output the number of odd numbers in the $$$k_{th}$$$ line.

ExampleInput
3
3
4
5
Output
2
4
2

加入题单

算法标签: