#P1430A. Number of Apartments

    ID: 5623 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>brute forceconstructive algorithmsmath*900

Number of Apartments

No submission language available for this problem.

Description

Recently a new building with a new layout was constructed in Monocarp's hometown. According to this new layout, the building consists of three types of apartments: three-room, five-room, and seven-room apartments. It's also known that each room of each apartment has exactly one window. In other words, a three-room apartment has three windows, a five-room — five windows, and a seven-room — seven windows.

Monocarp went around the building and counted nn windows. Now he is wondering, how many apartments of each type the building may have.

Unfortunately, Monocarp only recently has learned to count, so he is asking you to help him to calculate the possible quantities of three-room, five-room, and seven-room apartments in the building that has nn windows. If there are multiple answers, you can print any of them.

Here are some examples:

  • if Monocarp has counted 3030 windows, there could have been 22 three-room apartments, 22 five-room apartments and 22 seven-room apartments, since 23+25+27=302 \cdot 3 + 2 \cdot 5 + 2 \cdot 7 = 30;
  • if Monocarp has counted 6767 windows, there could have been 77 three-room apartments, 55 five-room apartments and 33 seven-room apartments, since 73+55+37=677 \cdot 3 + 5 \cdot 5 + 3 \cdot 7 = 67;
  • if Monocarp has counted 44 windows, he should have mistaken since no building with the aforementioned layout can have 44 windows.

Th first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

The only line of each test case contains one integer nn (1n10001 \le n \le 1000) — the number of windows in the building.

For each test case, if a building with the new layout and the given number of windows just can't exist, print 1-1.

Otherwise, print three non-negative integers — the possible number of three-room, five-room, and seven-room apartments. If there are multiple answers, print any of them.

Input

Th first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

The only line of each test case contains one integer nn (1n10001 \le n \le 1000) — the number of windows in the building.

Output

For each test case, if a building with the new layout and the given number of windows just can't exist, print 1-1.

Otherwise, print three non-negative integers — the possible number of three-room, five-room, and seven-room apartments. If there are multiple answers, print any of them.

Samples

Sample Input 1

4
30
67
4
14

Sample Output 1

2 2 2
7 5 3
-1
0 0 2