-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaxColour.java
41 lines (41 loc) · 1.05 KB
/
MaxColour.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import java.util.*;
public class MaxColour {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
int testcase=sc.nextInt();//accept no of test cases
int color=0;
while(testcase>0) {
color=0;
int x=sc.nextInt(); //no of red drops
int y=sc.nextInt(); //no of green drops
int z=sc.nextInt(); //no of blue drops
if(x>=1) color++; //with 1 drop 1 color is possible
if(y>=1) color++;
if(z>=1) color++;
int a[]=new int[3];
a[0]=x;
a[1]=y;
a[2]=z;
Arrays.sort(a);
int maxcolor=color;
if(a[1]>1 && a[2]>1){ //check if cyan color is possible
a[1]--;
a[2]--;
maxcolor=maxcolor+1;
}
if(a[0]>1 && a[2]>1){ //check if magenta color is possible
a[0]--;
a[2]--;
maxcolor=maxcolor+1;
}
if(a[0]>1 && a[1]>1){ //check if yellow color is possible
a[0]--;
a[1]--;
maxcolor=maxcolor+1;
}
testcase--;
System.out.println(maxcolor);
}
sc.close();
}
}