[백준]S5-2609
from collections import deque
a, b = map(int, input().split())
if max(a,b) % min(a,b) == 0:
print(min(a,b))
print(max(a,b))
else:
n = 1
ans = deque()
while n <= min(a,b):
if a % n ==0 and b % n ==0:
ans.append(n)
n += 1
else:
n += 1
M = max(ans)
print(M)
print(int(M*(a/M)*(b/M)))
유클리드 호제법으로 다시 풀어보면 좋을듯 하다.
Author And Source
이 문제에 관하여([백준]S5-2609), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@py_code/백준S5-2609저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)