白駿4504号:倍数を探す


質問する


題ショートカットキー>白駿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()