Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
There are three people sitting in a room – Alice, Bob, and Charlie. They need to decide on the temperature to set on the air conditioner. Everyone has a demand each:
Can they all agree on some temperature, or not?
For each test case, output on a new line, “Yes” or “No”. “Yes”, if they can decide on some temperature which fits all their demands. Or “No”, if no temperature fits all their demands.
You may print each character of the string in either uppercase or lowercase (for example, the strings NO
, nO
, No
, and no
will all be treated as identical).
Input: 4
30 35 25
30 35 40
30 35 35
30 25 35
Output:
Yes
No
Yes
No
Test Case 1: Alice wants the temperature to be \ge 30≥30, Bob wants it to be \le 35≤35, and Charlie wants it to be \ge 25≥25. The temperatures 30, 31, 32, 33, 34, 3530,31,32,33,34,35 all satisfy all their demands. So they can choose any of these 6 temperatures, and so the answer is “Yes”.
Test Case 2: Alice wants the temperature to be \ge 30≥30, Bob wants it to be \le 35≤35, and Charlie wants it to be \ge 40≥40. A number can’t be both \ge 40≥40, and \le 35≤35. So there is no temperature that satisfies all their demands. So the answer is “No”.
Test Case 3: Alice wants the temperature to be \ge 30≥30, Bob wants it to be \le 35≤35, and Charlie wants it to be \ge 35≥35. The temperature 3535 satisfies all their demands. So the answer is “Yes”.
Test Case 4: Alice wants the temperature to be \ge 30≥30, Bob wants it to be \le 25≤25, and Charlie wants it to be \ge 35≥35. A number can’t be both \ge 30≥30, and \le 25≤25. So there is no temperature that satisfies all their demands. So the answer is “No”.
/* package codechef; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Scanner sc=new Scanner(System.in);
int T=sc.nextInt();
while(T--!=0){
int A=sc.nextInt();
int B=sc.nextInt();
int C=sc.nextInt();
if(A<=B && C<=B)
System.out.println("YES");
else
System.out.println("NO");
}
}
}
#include <iostream>
using namespace std;
int main() {
// your code goes here
int a,b,c,t;
cin>>t;
while(t--)
{
cin>>a>>b>>c;
if(b>=a && b>=c)
{
cout<<"Yes"<<endl;
}
else
{
cout<<"No"<<endl;
}
}
return 0;
}
T=int(input())
for i in range(T):
A,B,C=list(map(int,input().split()))
if(A<=B and C<=B):
print("Yes")
else:
print("No")
In our experience, we suggest you solve this Air Conditioner Temperature CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
If you are stuck anywhere between any coding problem, just visit Queslers to get the Air Conditioner Temperature CodeChef Solution
I hope this Air Conditioner Temperature CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Coding Solutions >>