CF1371A.Magical Sticks

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Magical Sticks

A penguin Rocher has nn sticks. He has exactly one stick with length ii for all 1in1 \le i \le n.

He can connect some sticks. If he connects two sticks that have lengths aa and bb, he gets one stick with length a+ba + b. Two sticks, that were used in the operation disappear from his set and the new connected stick appears in his set and can be used for the next connections.

He wants to create the maximum number of sticks that have the same length. It is not necessary to make all sticks have the same length, some sticks can have the other length. How many sticks with the equal length he can create?

Input

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

For each test case, the only line contains a single integer nn (1n1091 \le n \le 10^{9}).

Output

For each test case, print a single integer  — the answer to the problem.

Note

In the third case, he can connect two sticks with lengths 11 and 22 and he will get one stick with length 33. So, he will have two sticks with lengths 33.

In the fourth case, he can connect two sticks with lengths 11 and 33 and he will get one stick with length 44. After that, he will have three sticks with lengths {2,4,4}\{2, 4, 4\}, so two sticks have the same length, and one stick has the other length.

Samples

4
1
2
3
4
1
1
2
2

在线编程 IDE

建议全屏模式获得最佳体验