package codeup100; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.Scanner; public class c1084 { public static void main(String[] args) { //시간초과 문제 발생 /* Scanner sc = new Scanner(System.in); String[] color = sc.nextLine().split(" "); sc.close(); int rPick = Integer.parseInt(color[0]); int gPick = Integer.parseInt(color[1]); int bPick = Integer.parseInt(color[2]); int count = 0; for(int r=0; r