题库练习 And Then There Were K
← 上一题 下一题 →

A14343 | And Then There Were K

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Given an integer $n$ , find the maximum value of integer $k$ such that the following condition holds:

$n$ & ( $n-1$ ) & ( $n-2$ ) & ( $n-3$ ) & ... ( $k$ ) = $0$ where & denotes the [bitwise AND operation.](https://en.wikipedia.org/wiki/Bitwise_operation#AND)

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 3 \cdot 10^4$ ). Then $t$ test cases follow.

The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^9$ ).

输出格式

For each test case, output a single integer — the required integer $k$ .

输入输出样例

输入 #1
3
2
5
17
输出 #1
1
3
15
C++ 编辑器
输入
输出