⌨️[AtCoder]ABC-220|A - Find Multiple2023/05/09に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-220 A - Find Multiple 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b, c = getIntMap() d = a if a == c else (a // c + 1) * c print(d if d <= b else -1) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion