백준 2480번 주사위 세개 풀이

임명수·2023년 4월 24일
0

백준

목록 보기
1/31

https://www.acmicpc.net/problem/2480

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        if(a == b && b == c)
            System.out.print(10000 + a*1000);
        else if(a == b || a == c)
            System.out.print(1000 + a*100);
        else if(b == c)
            System.out.print(1000 + b*100);
        else
            System.out.print((Math.max(Math.max(a, b), c)*100));
    }
}
profile
푸른영혼의별

0개의 댓글