-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheck.java
61 lines (52 loc) · 1.27 KB
/
Check.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* [백준][2981] 검문
* 12956KB 76ms
*/
package etc;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
public class Check {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
PriorityQueue<Integer> numbers = new PriorityQueue<Integer>();
for(int i=0; i<N; i++) {
numbers.add(Integer.parseInt(br.readLine()));
}
br.close();
int prev = numbers.poll();
int cur = numbers.poll();
int G = cur - prev;
while(!numbers.isEmpty()) {
prev = cur;
cur = numbers.poll();
G = gcd(G, cur-prev);
}
PriorityQueue<Integer> pq = dividers(G);
pq.add(G);
StringBuilder sb = new StringBuilder();
prev = -1;
while(!pq.isEmpty()) {
cur = pq.poll();
if(cur==prev) continue;
sb.append(cur);
sb.append(" ");
prev = cur;
}
System.out.print(sb.toString());
}
private static int gcd(int A, int B) {
return B==0? A : gcd(B, A%B);
}
private static PriorityQueue<Integer> dividers(int num) {
PriorityQueue<Integer> pq = new PriorityQueue<Integer>();
for(int i=2; i*i<=num; i++) {
if(num%i==0) {
pq.add(i);
pq.add(num/i);
}
}
return pq;
}
}