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
|
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 = new StringTokenizer(br.readLine());
int arr[] = new int[5];
for(int i = 0; i < 5; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
int result = 1;
while(true) {
int cnt = 0;
for (int j = 0; j < 5; j++) {
if (result % arr[j] == 0)
cnt++;
}
if (cnt >= 3) {
System.out.println(result);
return;
}
result++;
}
}
}
|
cs |
728x90
'BOJ(Java)' 카테고리의 다른 글
자바(백준) 10989 수 정렬하기 3 (0) | 2021.04.01 |
---|---|
자바(백준) 2751 수 정렬하기 2 (0) | 2021.03.31 |
자바(백준) 4641 Doubles (0) | 2021.02.01 |
자바(백준) 14697 방 배정하기 (0) | 2021.02.01 |
자바(백준) 10448 유레카 이론 (0) | 2021.02.01 |