IITWPC4B - Maggu and Triangles

no tags 

Maggu has a wire of length n. He has to make triangles out of it such that the side lengths of each triangle are integers. He now wants to know the number of distinct (not congruent) triangles that he can create using the wire of length n. Note that he has to use all of the wire in making the triangle.

Input

First line contains T: number of test cases. (1 <= T <= 10^5)
For each test case, there is a single line containging an integer n (n >= 1 && n <= 10^9)

Output

Each test case output a single integer representing the number of triangles he can create.

Example

Input:
3
5
7
9 Output:
1
2
3

hide comments
Ankush Jain: 2014-02-05 23:52:22

What is the answer for n = 4? In general, do we have to consider cases where area of formed triangle is 0? (I used a popular theorem available online, and it did not get accepted).


Added by:praveen123
Date:2014-01-31
Time limit:2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:IITK ACA CSE online judge