⌨️[AtCoder]ABC-127|A - Ferris Wheel2023/02/13に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-127 A - Ferris Wheel 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b = getIntMap() print(0 if a <= 5 else b // 2 if a <= 12 else b) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion