⌨️

[AtCoder]ABC-177|A - Don't be late

2023/03/21に公開

設問ページ

提出結果

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


def main():
    d, t, s = getIntMap()

    print('Yes' if d / s <= t else 'No')


if __name__ == "__main__":
    main()

Discussion