⌨️[AtCoder]ABC-048|B - Between a and b ...2022/12/20に公開・約300字ツイートPythonAtCoder#abctech 設問ページ 🔗ABC-048 B - Between a and b ... 提出結果 def getIntMap(): return map(int, input().split()) def main(): a, b, x = getIntMap() print(((b // x) + 1) if a == 0 else ((b // x) - ((a - 1) // x))) if __name__ == "__main__": main() ツイートDiscussionログインするとコメントできますLogin
Discussion