728x90
반응형
단순 수학 문제이다.
def gcd(a, b):
if b == 0:
return a
return gcd(b, a%b)
a, b = map(int, input().split(':'))
t = gcd(max(a, b), min(a, b))
print(f"{a//t}:{b//t}")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 9046번 복호화(python) (0) | 2021.02.28 |
---|---|
백준 알고리즘 8949번 대충 더해(python) (0) | 2021.02.28 |
백준 알고리즘 17245번 서버실(python) (0) | 2021.02.28 |
백준 알고리즘 16564번 히오스 프로게이머(python) (0) | 2021.02.28 |
백준 알고리즘 16401번 과자 나눠주기(python) (0) | 2021.02.28 |