Technocup 2021 - Elimination Round 3 |
---|
Finished |
We call a positive integer number fair if it is divisible by each of its nonzero digits. For example, 102 is fair (because it is divisible by 1 and 2), but 282 is not, because it isn't divisible by 8. Given a positive integer n. Find the minimum integer x, such that n≤x and x is fair.
The first line contains number of test cases t (1≤t≤103). Each of the next t lines contains an integer n (1≤n≤1018).
For each of t test cases print a single integer — the least fair number, which is not less than n.
4 1 282 1234567890 1000000000000000000
1 288 1234568040 1000000000000000000
Explanations for some test cases:
Name |
---|