Approch(Video):
Read problem statements in Bengali, Mandarin Chinese, Russian, and Vietnamese as well.
Chef has units of solid and units of liquid. He combines them to create a mixture. What kind of mixture does Chef produce: a solution, a solid, or a liquid?
A mixture is called :
1) A solution if and ,
2) A solid if , or
3) A liquid if .
Input Format
- The first line contains denoting the number of test cases. Then the test cases follow.
- Each test case contains two space-separated integers and on a single line.
Output Format
For each test case, output on a single line the type of mixture Chef produces, whether it is a Solution
, Solid
, or Liquid
. The output is case sensitive.
Constraints
Subtasks
- Subtask 1 (100 points): Original constraints
Sample Input 1
3
10 5
0 3
3 0
Sample Output 1
Solution
Liquid
Solid
Explanation
Test case : Chef adds both solid and liquid to the mixture, hence the mixture is a solution.
Test case : Chef does not add solid to the mixture, hence the mixture is liquid.
Test case : Chef does not add liquid to the mixture, hence the mixture is solid.
Which Mixture - Codechef Solution :
#include <iostream>
using namespace std;
int main() {
// your code goes here
int t;
cin>>t;
while(t--){
int a, b;
cin>>a>>b;
if(a>0 && b>0){
cout<<"Solution"<<endl;
}
else if(a == 0){
cout<<"Liquid"<<endl;
}
else if(b == 0){
cout<<"Solid"<<endl;
}
}
return 0;
}
0 Comments