atcoder#TOKIOMARINE2020B. Tag
Tag
Score : points
Problem Statement
Two children are playing tag on a number line. (In the game of tag, the child called "it" tries to catch the other child.) The child who is "it" is now at coordinate , and he can travel the distance of per second. The other child is now at coordinate , and she can travel the distance of per second.
He can catch her when his coordinate is the same as hers. Determine whether he can catch her within seconds (including exactly seconds later). We assume that both children move optimally.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If "it" can catch the other child, print YES
; otherwise, print NO
.
1 2
3 1
3
YES
1 2
3 2
3
NO
1 2
3 3
3
NO