반응형
파이썬으로 백준풀기 :: 5086번 배수와 약수
https://www.acmicpc.net/problem/5086
코드
1 2 3 4 5 6 7 8 9 | def bj5086(a,b) : if b%a == 0 : return "factor" elif a%b == 0 : return "multiple" else : return "neither" a, b = map(int, input().split()) while a != 0 and b != 0 : print(bj5086(a, b)) a, b = map(int, input().split()) | cs |
반응형
'코딩테스트 연습 > 백준' 카테고리의 다른 글
[백준] 11653번 : 소인수분해 in python 파이썬 (1) | 2019.11.30 |
---|---|
[백준] 1037번 : 약수 in python 파이썬 (0) | 2019.11.29 |
[백준] 15649번 : N과 M(1) in python 파이썬 (0) | 2019.11.19 |
[백준] 10814번 : 나이순 정렬 in python 파이썬 (0) | 2019.11.18 |
[백준] 1181번 : 단어 정렬 in python 파이썬 (0) | 2019.11.17 |