The Logic game

3.2

4 votes
Basic Programming, Bit Manipulation, Bit manipulation, Medium
Problem

You and your friend are playing a card game. You have an ordered deck of N cards that are numbered from 1 to N where card 1 is placed at the top and card N is placed at the bottom.
You both perform an operation on the deck until there are at least 2 cards on the deck. You throw away the card on the top and then your friend moves the card that is now on the top of the deck to the bottom.
You are required to determine the number on the final card that is left in the deck.

Input format

  • First line: A number T denoting the number of test cases
  • Each of the next T lines: A number N denoting the number of cards

Output format

For each test case, print the required answer in a new line.

Constraints

1T106

1N1010

Sample Input
5
2 
3
4
5
8
Sample Output
2
2
4
2
8
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

In Sample Data, Number of testcases T=5,

When Number of cards N=2, so number on last card is 2.

When Number of cards N=5, so number on last card is 2.

Editor Image

?