CodechefSep 13, 2025

Reach Home

Hazrat Ali

Codechef

Chef can travel up to 5 kilometres on 1 litre of fuel on his motorcycle.
Currently, his motorcycle is filled with X litres of fuel and his home is Y kilometres away.

Determine whether Chef can reach his home on his motorcycle or not.

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • The first and only line of each test case contains two space-separated integers X and Y — the amount of fuel in Chef’s motorcycle and the distance to Chef’s home in kilometres.

Output Format

For each test case, output YES, if Chef can reach home on his motorcycle. Otherwise output NO.

You can output each character of the answer in uppercase or lowercase. For example, the strings yEsyesYes, and YES are considered the same.

Constraints

  • 1≤T≤100
  • 1≤X,Y≤1000

Sample 1:

Input
4
2 10
3 17
4 2
6 45
Output
 
YES
NO
YES
NO

Solution

T = int(input())

for _ in range(T):
    X, Y = map(int, input().split())

    if 5 * X >= Y:
        print("YES")
    else:
        print("NO")





Comments