CF1266B.Dice Tower

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

Dice Tower

Bob is playing with 66-sided dice. A net of such standard cube is shown below.

He has an unlimited supply of these dice and wants to build a tower by stacking multiple dice on top of each other, while choosing the orientation of each dice. Then he counts the number of visible pips on the faces of the dice.

For example, the number of visible pips on the tower below is 2929 — the number visible on the top is 11, from the south 55 and 33, from the west 44 and 22, from the north 22 and 44 and from the east 33 and 55.

The one at the bottom and the two sixes by which the dice are touching are not visible, so they are not counted towards total.

Bob also has tt favourite integers xix_i, and for every such integer his goal is to build such a tower that the number of visible pips is exactly xix_i. For each of Bob's favourite integers determine whether it is possible to build a tower that has exactly that many visible pips.

Input

The first line contains a single integer tt (1t10001 \leq t \leq 1000) — the number of favourite integers of Bob.

The second line contains tt space-separated integers xix_i (1xi10181 \leq x_i \leq 10^{18}) — Bob's favourite integers.

Output

For each of Bob's favourite integers, output "YES" if it is possible to build the tower, or "NO" otherwise (quotes for clarity).

Note

The first example is mentioned in the problem statement.

In the second example, one can build the tower by flipping the top dice from the previous tower.

In the third example, one can use a single die that has 55 on top.

The fourth example is impossible.

Samples

4
29 34 19 38
YES
YES
YES
NO

在线编程 IDE

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