⌨️

[AtCoder]ABC-078|B - ISU

2023/01/07に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())


def main():
    x, y, z = getIntMap()

    print((x - z) // (y + z))


if __name__ == "__main__":
    main()

Discussion