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
- 이벤트
- quizlet
- 자바
- 네트워킹
- 한빛아카데미
- 스크롤
- reactjs code snippets
- JavaScript
- ArrayList
- 초연결사회의 데이터통신과 네트워킹
- gsap
- Node.js
- 단어장
- 백준
- html
- 일본어
- JLPT
- java
- ScrollToPlugin
- 데이터통신
- 함수
- 연습문제
- 라이브러리
- 알고리즘
- 자바스크립트
- 초연결 사회의 데이터통신과 네트워킹
- prettier-code formatter
- scrolly
- React
- Algorithm
Archives
- Today
- Total
umilove98의 블로그
백준 1417 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
29
30
31
32
33
34
35
36
37
38
39
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
public class Q1417 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int dasom = Integer.parseInt(br.readLine()); //다솜이의 득표수 저장
int result = 0;
ArrayList<Integer> vote = new ArrayList<Integer>();
for(int i = 0; i < n-1; i++) { //다솜이를 제외한 나머지 후보들의 득표수 저장
vote.add(Integer.parseInt(br.readLine()));
}
if(n == 1) { // n이 1일 경우 후보가 다솜이 혼자이므로 답은 0 출력
System.out.println(0);
return;
}
while(Collections.max(vote) >= dasom) { // 다른 후보자들 중 최대값이 다솜이의 표보다 적어지면 종료
int i = vote.indexOf(Collections.max(vote));
vote.set(i, vote.get(i) - 1); // 최대값을 가진 후보자의 표 수를 하나 줄이고 다솜이의 표 수를 하나 늘림
dasom++;
result++;
}
System.out.println(result);
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 1427 Java 자바 (0) | 2021.08.07 |
---|---|
백준 1598 Java 자바 (0) | 2021.08.06 |
백준 1547 Java 자바 (0) | 2021.08.05 |
백준 1246 Java 자바 (0) | 2021.08.04 |
백준 1333 Java 자바 (0) | 2021.08.04 |