시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB23201184.615%

문제

Gillian is normally a very lively child. Most of the time she plays with her friends and tries to indulge in some mischief. But today is different, today Gillian woke up with the flu so she has to stay in bed – still and bored. To entertain her, her brother came up with the following game.

When Gillian has an integer x greater than 1, she can split it up into two positive integers y and z such that x = y + z. After performing this operation, her brother gives her y ⋅ z hazelnuts. However, not all pairs of y,z are valid – there are some rules Gillian must comply with. These rules differ between the easy and hard subproblems; they are listed in the problem specification section.

Numbers that are obtained as a result of this operation can be also split up. At the beginning of the game, Gillian starts with a single integer n. She performs a series of operations described above until she is left with n copies of number 1. What is the maximum number of hazelnuts she can win if she chooses her moves wisely?

Gillian can pick any integer k satisfying 1 < k ≤ x and split up number x into y = ⌊x∕k⌋ and z = x −⌊x∕k⌋.

입력

The first line of the input file contains an integer t ≤ 1000 specifying the number of test cases. Each test case is preceded by a blank line.

Each test case contains a single line with Gillian’s initial integer n > 1. You may assume that n ≤ 109.

출력

For each test case, output a single line with the maximum number of hazelnuts.

예제 입력 1

1

5

예제 출력 1

10