Chef and Gym CodeChef Solution | CodeChef Problem Solution 2022
Chef has decided to join a Gym in ChefLand and if possible, also hire a personal trainer at the gym. The monthly cost of the gym is and personal training will cost him an additional per month. Chef's total budget per month is only . Print 1
if Chef can only join the gym, 2
if he can also have a personal trainer, and 0
if he can't even join the gym.
Note that if Chef wants to hire a personal trainer, he must join the gym — he cannot hire the trainer without joining the gym.
Input Format
- The first line of input will contain a single integer , denoting the number of test cases. Then the test cases follow.
- Each test case consists of a single line of input containing three space-separated integers .
Output Format
For each test case, output in a single line 2
if Chef can go to the gym and have a trainer, 1
if Chef can only go to the gym, 0
if he can't even go to the gym.
Constraints
Sample Input 1
4
1 2 3
10 12 13
23 1 22
23 1 63
Sample Output 1
2
1
0
2
Explanation
Test case : Since the total cost of Chef getting a gym membership and a trainer is which is equal to his budget of , Chef can get both a gym membership and a trainer.
Test case : Since the total cost of Chef getting a gym membership and a trainer is which is greater than his budget of , he can't get both a gym membership and a trainer. However, the cost of the gym membership is which is less than his budget of , so Chef can get only a gym membership.
Test case : Since the cost of Chef getting a gym membership is which is greater than his budget of , Chef can't even get the gym membership.
Test case : The same costs as the previous test, but this time Chef has enough money to afford both the membership and a personal trainer.
Join Now for Solution:-
No comments:
Post a Comment