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 | 31 |
Tags
- java 기술면접
- spring cloud
- Coroutine
- 파이썬
- 백준 16719
- 백준 15685
- java
- with recursive
- JPA
- 웹어플리케이션 서버
- spring security
- 백준 17626
- 프로래머스
- 백준 파이썬
- 프로그래머스
- Spring
- MSA
- Spring Boot
- MySQL
- JVM
- 백준 17779
- spring oauth
- 백준
- 백준 19238
- sql 기술면접
- re.split
- 백준 16235
- Kotlin
- springboot
- 백준 16236
Archives
- Today
- Total
시작이 반
[백준] 20003번 (python 파이썬) 본문
SMALL
NTS 코테를 봤다..
1번문제가 유클리드 호제법을 활용한 문제였다고한다..(생각도 못함..)
생각나서 gcd관련문제를 풀어봤다...ㅜ
분모들의 lcm과 분자들의 gcd를 구하는 문제이다.
gcd를 구하는 방법은 유클리드 호제법을 이용하여 구할 수 있다.
def gcd(a, b):
if b > a:
a, b = b, a
while True:
if b == 0:
break
a, b = b, a % b
return a
이를 통해서 lcm또한 구할 수 있다.
def lcm(a, b):
return a * b // gcd(a, b)
전체 코드
기약분수는 fractions 함수를 통해서 쉽게 구할 수 있다.
import fractions
n = int(input())
ups = list()
downs = list()
for _ in range(n):
up, down = map(int, input().split())
number = fractions.Fraction(up, down)
ups.append(number.numerator)
downs.append(number.denominator)
def gcd(a, b):
if b > a:
a, b = b, a
while True:
if b == 0:
break
a, b = b, a % b
return a
def lcm(a, b):
return a * b // gcd(a, b)
if n == 1:
result_gcd = ups[0]
result_lcm = downs[0]
else:
result_gcd = gcd(ups[0], ups[1])
result_lcm = lcm(downs[0], downs[1])
for i in range(2, n):
result_gcd = gcd(result_gcd, ups[i])
result_lcm = lcm(result_lcm, downs[i])
print(result_gcd, result_lcm)
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 1629번 (python 파이썬) (0) | 2021.03.15 |
---|---|
[백준] 2168번 (python 파이썬) (0) | 2021.03.15 |
[백준] 1780번 (python 파이썬) (2) | 2021.03.08 |
[백준] 1992번 (python 파이썬) (0) | 2021.03.06 |
[백준] 2630번 (python 파이썬) (0) | 2021.03.06 |