250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JavaScript
- prettier-code formatter
- 네트워킹
- reactjs code snippets
- 연습문제
- 알고리즘
- 데이터통신
- 라이브러리
- 한빛아카데미
- 함수
- scrolly
- 초연결 사회의 데이터통신과 네트워킹
- 단어장
- 초연결사회의 데이터통신과 네트워킹
- JLPT
- html
- 자바스크립트
- 백준
- ScrollToPlugin
- 이벤트
- Node.js
- React
- 스크롤
- ArrayList
- java
- 일본어
- quizlet
- 자바
- Algorithm
- gsap
Archives
- Today
- Total
umilove98의 블로그
백준 2480 Java 자바 본문
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q2480 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int dice1 = Integer.parseInt(st.nextToken());
int dice2 = Integer.parseInt(st.nextToken());
int dice3 = Integer.parseInt(st.nextToken());
if(dice1 == dice2 && dice2 == dice3) {
System.out.println(10000 + dice1 *1000);
}else if(dice1 == dice2 || dice1 == dice3) {
System.out.println(1000 + dice1 * 100);
}else if(dice2 == dice3) {
System.out.println(1000 + dice2 * 100);
}else {
System.out.println(Math.max(Math.max(dice1, dice2), dice3) * 100);
}
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 2325 Java 자바 (0) | 2021.08.21 |
---|---|
백준 1789 Java 자바 (0) | 2021.08.20 |
백준 1769 Java 자바 (0) | 2021.08.20 |
백준 2420 Java 자바 (0) | 2021.08.19 |
백준 1730 Java 자바 (0) | 2021.08.18 |