728x90
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
|
package BruteForce_Search;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
int ad[] = new int[9];
int nonum1 = 0, nonum2 = 0;
int sum = 0;
for(int i = 0; i < 9; i++){
st = new StringTokenizer(br.readLine());
ad[i] = Integer.parseInt(st.nextToken());
sum += ad[i];
}
for(int i = 0; i < 9; i++){
for(int j = 0; j < 9; j++){
if(sum - ad[i] - ad[j] == 100){
nonum1 = i;
nonum2 = j;
}
}
}
for(int i = 0; i < 9; i++){
if(i != nonum1 && i != nonum2)
System.out.println(ad[i]);
}
}
}
|
cs |
9개의 수 중에 합이 100이 되는 7개의 숫자를 찾는 문제였다. 여기서 7개의 숫자를 찾기 위해, 7개의 포문을 돌릴 수 없기 때문에 어떤 방법을 사용해야 할지 생각을 해보았다. 그래서 sum에 모든 배열의 합을 넣은 뒤에, 9개의 숫자 중에 2개의 숫자만 빼면 되기 때문에, 이중 포문을 이용하여 sum에서 두 숫자를 빼면 100이 나오는 두 숫자를 찾으면 된다. 그래서 nonum1, nonum2에 저장하여 배열 전체를 탐색하여 nonum1, nonum2의 index값을 갖지 않는 배열 값을 구하면 된다.
728x90
'BOJ(Java)' 카테고리의 다른 글
자바(백준) 14697 방 배정하기 (0) | 2021.02.01 |
---|---|
자바(백준) 10448 유레카 이론 (0) | 2021.02.01 |
자바(백준) 2966 찍기 (0) | 2021.01.28 |
자바(백준) 2798 블랙잭 (0) | 2021.01.28 |
자바(백준) 2231 분해합 (0) | 2021.01.28 |