GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 1 May 2022

Chef and Masks CodeChef Solution | CodeChef Problem Solution 2022

Chef is shopping for masks. In the shop, he encounters 2 types of masks:

  • Disposable Masks — cost X but last only 1 day.
  • Cloth Masks — cost Y but last 10 days.

Chef wants to buy masks to last him 100 days. He will buy the masks which cost him the least. In case there is a tie in terms of cost, Chef will be eco-friendly and choose the cloth masks. Which type of mask will Chef choose?

Solution Click Below:-  CLICK HERE

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases. Then the test cases follow.

  • Each test case consists of a single line of input, containing two space-separated integers X,Y.

Output Format

For each test case, if Chef buys the cloth masks print CLOTH, otherwise print DISPOSABLE.

You may print each character of the string in uppercase or lowercase (for example, the strings clothclOThcLoTH, and CLOTH will all be treated as identical).

Constraints

  • 1T5000
  • 1X<Y100

Sample Input 1 

4
10 100
9 100
88 99
1 11

Sample Output 1 

Cloth
Disposable
Cloth
Disposable

Explanation

Test case 1: The cost of the disposable masks will be 10100=1000, while the cost of the cloth masks will be 10010=1000. Since the price is equal and Chef is eco-friendly, Chef will buy the cloth masks.

Test case 2: The cost of the disposable masks will be 9100=900, while the cost of the cloth masks will be 10010=1000. Since the price of disposable masks is less, Chef will buy the disposable masks.

Test case 3: The cost of the disposable masks will be 88100=8800, while the cost of the cloth masks will be 9910=990. Since the price of the cloth masks is less, Chef will buy the cloth masks.

Test case 4: The cost of the disposable masks will be 1100=100, while the cost of the cloth masks will be 1110=110. Since the price of disposable masks is less, Chef will buy the disposable masks.

Join Now for Solution:- 

No comments:

Post a Comment