백준 4504번: 배수 찾기

danbibibi·2021년 11월 1일
0

문제

문제 바로가기> 백준 4504번: 배수 찾기

풀이

입력 받은 수로 나누어떨어지는 확인하면 되는 간단한 문제이다. 출력하는 형식만 주의해주면 된다.

def solution():
    import sys
    input = sys.stdin.readline
    n = int(input())
    while(1):
        tmp = int(input())
        if tmp==0: break
        else:
            if tmp%n==0: print("%d is a multiple of %d."%(tmp, n))
            else: print("%d is NOT a multiple of %d."%(tmp, n))
solution()
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글