백준 5086 파이썬
2024. 3. 5. 08:26ㆍ코딩 도구/백준 (단계별)
반응형
백준 5086 파이썬 : 배수와 약수
문제
https://www.acmicpc.net/problem/5086
답안 코드 :
while 1:
x, y = map(int, input().split())
if x == 0 and y == 0:
break
if x < y and y % x == 0:
print("factor")
elif x > y and x % y == 0:
print("multiple")
else:
print("neither")
백준 / 문제 / 단계별로 풀어보기 / 9단계 약수, 배수와 소수
while 1:
x, y = map(int, input().split())
if x == 0 and y == 0:
break
if x < y and y % x == 0:
print("factor")
elif x > y and x % y == 0:
print("multiple")
else:
print("neither")
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 9506 파이썬 , join 메서드, sep="" (14) | 2024.03.08 |
---|---|
백준 2501번 파이썬 (13) | 2024.03.06 |
백준 2869 파이썬 , ceil 함수 floor 함수 (37) | 2024.02.16 |
백준 2903 파이썬 (28) | 2024.02.15 |
백준 2720 파이썬 , 그리디 알고리즘 (31) | 2024.02.14 |