Miami GP CodeChef Solution | CodeChef Problem Solution 2022
Chef has finally got the chance of his lifetime to drive in the tournament. But, there is one problem. Chef did not know about the 107% rule and now he is worried whether he will be allowed to race in the main event or not.
Given the fastest finish time as seconds and Chef's finish time as seconds, determine whether Chef will be allowed to race in the main event or not.
Note that, Chef will only be allowed to race if his finish time is within 107% of the fastest finish time.
Input Format
- First line will contain , number of testcases. Then the testcases follow.
- Each testcase contains of a single line of input, two space separated integers and denoting the fastest finish time and Chef's finish time respectively.
Output Format
For each test case, output if Chef will be allowed to race in the main event, else output .
You may print each character of the string in uppercase or lowercase (for example, the strings , , and will all be treated as identical).
Constraints
Sample Input 1
4
1 2
15 16
15 17
100 107
Sample Output 1
NO
YES
NO
YES
Explanation
Test case : The fastest car finished in second. Thus, Chef should have finished on or before seconds to ensure qualification but he finished in seconds. Hence, Chef will not be allowed to race in the main event.
Test case : The fastest car finished in seconds. Thus, Chef should have finished on or before seconds to ensure qualification and he managed to finish in seconds. Hence, Chef will be allowed to race in the main event.
Test case : The fastest car finished in seconds. Thus, Chef should have finished on or before seconds to ensure qualification but he finished in seconds. Hence, Chef will not be allowed to race in the main event.
Test case : The fastest car finished in seconds. Thus, Chef should have finished on or before seconds to ensure qualification and he finished just in time for qualification. Hence, Chef will be allowed to race in the main event.
Join Now for Solution:-
No comments:
Post a Comment