-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJ07017_LopPairGeneric.java
57 lines (49 loc) · 1.34 KB
/
J07017_LopPairGeneric.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
import java.util.*;
import java.io.*;
import java.math.*;
class Pair<K, V> {
public K k;
public V v;
public Pair(K k, V v) {
this.k = k;
this.v = v;
}
public boolean prime(int n) {
int h = (int) Math.sqrt(n);
for (int i = 2; i <= h; i++) {
if (n % i == 0) {
return false;
}
}
return n > 1;
}
public boolean isPrime() {
return prime((Integer) k) && prime((Integer) v);
}
@Override
public String toString() {
String ans = String.valueOf(k) + " " + String.valueOf(v);
return ans;
}
}
public class J07017_LopPairGeneric {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(new File("DATA.in"));
int t = sc.nextInt();
while (t-- > 0) {
int n = sc.nextInt();
boolean check = false;
for (int i = 2; i <= 2 * Math.sqrt(n); i++) {
Pair<Integer, Integer> p = new Pair<>(i, n - i);
if (p.isPrime()) {
System.out.println(p);
check = true;
break;
}
}
if (!check) {
System.out.println(-1);
}
}
}
}