-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze I] Title: 최대공약수와 최소공배수, Time: 40 ms, Memory: 32412 KB -Baekjo…
…onHub
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# [Bronze I] 최대공약수와 최소공배수 - 2609 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/2609) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 32412 KB, 시간: 40 ms | ||
|
||
### 분류 | ||
|
||
유클리드 호제법, 수학, 정수론 | ||
|
||
### 제출 일자 | ||
|
||
2024년 12월 13일 14:43:13 | ||
|
||
### 문제 설명 | ||
|
||
<p>두 개의 자연수를 입력받아 최대 공약수와 최소 공배수를 출력하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에는 두 개의 자연수가 주어진다. 이 둘은 10,000이하의 자연수이며 사이에 한 칸의 공백이 주어진다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에는 입력으로 주어진 두 수의 최대공약수를, 둘째 줄에는 입력으로 주어진 두 수의 최소 공배수를 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import sys | ||
input = sys.stdin.readline | ||
a, b = map(int,input().split()) | ||
|
||
def gcd(a,b): | ||
while b>0: | ||
a,b = b, a%b | ||
return a | ||
|
||
def lcm(a,b): | ||
return a*b // gcd(a,b) | ||
|
||
print(gcd(a,b)) | ||
print(lcm(a,b)) |