이게 앞선 문제보다 난이도가 낮은 브론즈4 문제인데...저는 체감상 이게 더 어렵게 느껴졌습니다. 같은눈, 다른눈 변수를 각각 구별만 확실히 할 수 있다면 어렵지는 않아요. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int d1 = sc.nextInt(); int d2 = sc.nextInt(); int d3 = sc.nextInt(); int rst; if (d1==d2 && d2==d3) { rst = 10000+d1*1000; System.out.println(rst); } else if ((d1 != d2 && d1 !=..