728x90
반응형
단순 사칙연산 문제이다.
while 1:
a, b, c, d = map(int, input().split())
if a == b == c == d == 0:
break
cnt = 0
while not (a == b == c == d):
a, b, c, d = abs(a-b), abs(b-c), abs(c-d), abs(d-a)
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4388번 받아올림(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4101번 크냐?(python) (0) | 2021.02.13 |
백준 알고리즘 3507번 Automated Telephone Exchange(python) (0) | 2021.02.12 |
백준 알고리즘 3486번 Adding Reversed Numbers(python) (0) | 2021.02.12 |
백준 알고리즘 3460번 이진수(python) (0) | 2021.02.12 |