白駿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()
Reference
この問題について(白駿4504号:倍数を探す), 我々は、より多くの情報をここで見つけました https://velog.io/@danbibibi/백준-4504번-배수-찾기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol