⌨️[AtCoder]ABC-120|A - Favorite Sound2023/02/07に公開・約200字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-120 A - Favorite Sound 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b, c = getIntMap() x = b // a print(c if c < x else x) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion