728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int f = scan.nextInt();
int s = scan.nextInt();
int t = scan.nextInt();
int total = 0;
if(f == s && f == t) {
total = 10000 + (f*1000);
}else if(f == s) {
total = 1000 + (f*100);
}else if(f == t) {
total = 1000 + (f*100);
}else if(s == t) {
total = 1000 + (s*100);
}else if(f < s && t < s){
total = s * 100;
}else if(s < f && t < f) {
total = f * 100;
}else {
total = t *100;
}
System.out.println(total);
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 11022번 A+B -8 JAVA(자바) 문제풀이 (0) | 2023.01.30 |
---|---|
백준 25304번 영수증 JAVA(자바) 문제풀이 (0) | 2023.01.29 |
백준 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰 JAVA(자바) 문제 풀이 (0) | 2023.01.08 |
백준 11021번 A+B - 7 JAVA(자바) 문제 풀이 (0) | 2022.05.24 |
백준 2742번 기찍 N JAVA(자바) 문제 풀이 (0) | 2022.05.10 |