[Solution] Reach on Time CodeChef Solution
Problem
Chef has recently moved into an apartment. It takes minutes for Chef to reach office from the apartment.
Chef left for the office minutes before Chef was supposed to reach. Determine whether or not Chef will be able to reach on time.
Input Format
- The first line of input will contain a single integer , denoting the number of test cases.
- Each test case consists of a single integer .
Output Format
For each test case, output YES
if Chef will reach on time, NO
otherwise.
The output is case-insensitive. Thus, the strings YES
, yes
, yeS
, and Yes
are all considered the same.
👇👇👇👇👇
Explanation:
Test case 1: Chef leaves minutes before he is supposed to reach, so he will reach the office exactly on time since it takes minutes to commute.
Test case 2: Chef will reach minutes early.
Test case 3: Chef will reach 16 minutes late.
No comments:
Post a Comment