A number is considered lucky if it can be represented as a sum of a non-negative number of 4s and a non-negative number of 7s. For example, 18 is lucky because 18 = 7 + 7 + 4. Given T numbers in an array A, tell me whether each of them is lucky.
The first line of input will contain one integer, T.
The second line of input will contain T integers, representing the array A.
The output should contain T lines with T strings, either "Lucky" or "Unlucky", with the i-th line representing the luckiness of the i-th number.
For all subtasks: 1 ≤ T ≤ 105.
Subtask 1 (12%): 1 ≤ T, Ai ≤ 100.
Subtask 2 (37%): 1 ≤ Ai ≤ 106.
Subtask 3 (20%): 1 ≤ Ai ≤ 109.
Subtask 4 (31%): 1 ≤ Ai ≤ 1018.
Subtask 5 (0%): Sample Testcases.
4 1 4 11 17
Unlucky Lucky Lucky Unlucky
Subtask | Score |
---|---|
1 | 12 |
2 | 37 |
3 | 20 |
4 | 31 |
5 | 0 |