본문 바로가기

코딩/coding test

[JAVA] 백준 2480번 : 주사위 세개

[JAVA] 백준 2480번 : 주사위 세개

import java.util.Scanner;

public class Main {
 		public static void main (String[] args) {
        	Scanner sc = new Scanner(System.in);
            
            int x = sc.nextInt();
            int y = sc.nextInt();
            int z = sc.nextInt();
            
            if( x==y && y==z && z==x ) {
             	System.out.println(10000 + x * 1000);
            } else if ( x==y || x==z ) {
            	System.out.println(1000 + x * 100);
            } else if ( y==z ) {
             	System.out.println(1000 + y * 100);
            } else {
            	if ( x > y && x > z ) {
                	System.out.println(x * 100);
                } else if ( y > x && y > z ) {
                	System.out.println(y * 100);
                } else {
                	System.out.println(z * 100);
                }
            }  
        }
    }

 

:)