https://gkim1011.tistory.com/54
정석으로 푸는건 재귀인데
recursionerror가 계속 생겨서 while문으로도 풀어보았다.
전체 코드)
n, m = map(int, input().split())
cnt = 0
while True:
if n>m:
n = n-m
cnt+=1
elif m>n:
m = m-n
cnt+=1
elif n==m:
cnt+=1
break
print(cnt)
'파이썬 알고리즘' 카테고리의 다른 글
[파이썬] 백준 6603 로또 (0) | 2022.10.31 |
---|---|
[파이썬] SWEA 11315 오목판정 (0) | 2022.10.25 |
[파이썬] 백준 7113 Rectangle (0) | 2022.10.25 |
[파이썬] SWEA 3499 퍼펙트 셔플 (0) | 2022.10.25 |
[파이썬] SWEA 11718 사냥꾼 (0) | 2022.10.25 |