일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- algotythm
- 라즈비안
- Python
- 2579
- Algorythm
- 라즈베리파이3
- nav-tab
- 16.04
- bootstrap
- springboot3.x
- CSS
- dynaminprogramming
- raspberrypi
- 크롤링
- Crawling
- 알고리즘
- ubuntu
- NAV
- dp
- 트리
- 라즈베리파이
- 13237
- 2909
- node.js
- baekjun
- 백준
- MongoDB
- 파이썬
- 라즈베리파이3b+
- HTML
Archives
- Today
- Total
목록algotythm (1)
노트
[백준] 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)
알고리즘
2023. 12. 9. 11:08