-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJ08024_So0VaSo9.java
35 lines (31 loc) · 1001 Bytes
/
J08024_So0VaSo9.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import java.io.*;
import java.math.*;
import java.util.*;
public class J08024_So0VaSo9 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while (t-- > 0) {
int n = sc.nextInt();
Deque<String> dq = new ArrayDeque<>();
dq.push("9");
while (dq.size() > 0) {
String top = dq.peekLast();
dq.pollLast();
if (check(top, n)) {
System.out.println(top);
break;
}
dq.push(top + "0");
dq.push(top + "9");
}
}
}
public static boolean check(String s, int n) {
BigInteger ss = new BigInteger(s);
BigInteger nn = new BigInteger(String.valueOf(n));
BigInteger cc = new BigInteger("0");
BigInteger mod = ss.mod(nn);
return (cc.equals(mod));
}
}