일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CSS
- algotythm
- NAV
- 2579
- 라즈비안
- 13237
- 트리
- 크롤링
- nav-tab
- dynaminprogramming
- node.js
- 백준
- Python
- Algorythm
- 2909
- 라즈베리파이
- 라즈베리파이3
- ubuntu
- bootstrap
- raspberrypi
- HTML
- springboot3.x
- 라즈베리파이3b+
- baekjun
- Crawling
- dp
- 알고리즘
- MongoDB
- 파이썬
- 16.04
Archives
- Today
- Total
노트
[백준] 1417번 국회의원 선거 python 본문
n = int(input())
dasom = int(input())
vote = []
count = 0
for _ in range(n - 1):
vote.append(int(input()))
vote.sort(reverse=True)
if n == 1:
print(0)
else:
while vote[0] >= dasom:
dasom += 1
vote[0] -= 1
count += 1
vote.sort(reverse=True)
print(count)
'알고리즘' 카테고리의 다른 글
[백준] 2909번 캔디 구매 python (0) | 2024.01.28 |
---|---|
[백준] 7785번 회사에 있는 사람 python (0) | 2024.01.11 |
[백준] 11399번 ATM python (0) | 2023.11.30 |
[백준] 13565번 침투 python (1) | 2023.11.26 |
[백준] 14493번 과일노리 python (1) | 2023.10.01 |
Comments