-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
30 lines (24 loc) Β· 839 Bytes
/
Main.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
package BruteForce.P3040;
import java.io.*;
public class Main {
static int sum = -100;
static int[] nums = new int[9];
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BruteForce/P3040/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
for (int i = 0; i < 9; i++) {
nums[i] = Integer.parseInt(br.readLine());
sum += nums[i];
}
for (int i = 0; i < 8; i++) {
for (int j = i+1; j < 9; j++) {
if (nums[i] + nums[j] == sum) {
for (int k = 0; k < 9; k++) {
if (k != i && k != j) System.out.println(nums[k]);
}
break;
}
}
}
}
}