250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 완탐
- 백준15652
- D드라이브생성
- 재귀함수
- 주사위굴리기2
- N과M
- 전화번호속의암호
- 삼성역테
- Bfs와DFS
- 파티션 크기 조정
- 정보처리기사
- BFS
- 중복순열
- 정올 1620
- 자바
- java
- 백준2251
- 중복조합
- 순열
- 23288
- 자바 코테
- 알고리즘개념
- 알고리즘
- 코테준비
- 완전탐색
- 코테
- 백준13458
- 백준
- 에라토스테네스의채
- 볼륨 만들기
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 2609번 최대공약수와 최소공배수 본문
728x90
풀이
유클리드 호제법을 사용하자!
public class BOJ_2609 {
static int a, b;
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(in.readLine()," ");
a = Integer.parseInt(st.nextToken());
b = Integer.parseInt(st.nextToken());
if(a<b) {
int tmp = a;
a = b;
b = tmp;
}
int g = gcd(a,b);
int l = a * b / g;
System.out.println(g);
System.out.println(l);
}
static int gcd(int a, int b) {
if(a%b ==0) {
return b;
}else
return gcd(b, a%b);
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 14225번 부분수열의 합 (0) | 2021.02.15 |
---|---|
[문제] 백준 1182번 부분수열의 합 (0) | 2021.02.15 |
[문제] 백준 1759번 암호 만들기 (0) | 2021.02.14 |
[문제] 백준 15900번 나무 탈출 (0) | 2021.02.14 |
[문제] 백준 11725번 트리의 부모 찾기 (0) | 2021.02.12 |
Comments