일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- LCM
- unity
- 1일1솔
- 소수찾기
- 누적합
- DP
- python3
- Python
- 브루투포스
- 파이썬
- C#강의
- BFS
- mvc
- 그리디 알고리즘
- c#
- 프로그래머스
- appendleft
- 인프런
- 백준
- pypy3
- 소수판별
- 합 구하기
- popleft
- deque
- spring
- JPA
- 우선순위큐
- Java
- 연관관계
- 완전탐색
Archives
- Today
- Total
목록21758 (1)
jae_coding

문제 문제 링크 코드 import sys input = sys.stdin.readline n = int(input()) place = list(map(int, input().split())) sum_place = sum(place) # bee bee honey b_b_h = 0 bee = place[0] for i in range(1, n): bee += place[i] first_bee = sum_place - place[0] - place[i] # 첫번째 벌이 먹는 꿀의 양 second_bee = sum_place - bee # 두번째 벌이 먹는 꿀의 양 b_b_h = max(b_b_h, first_bee + second_bee) # honey bee bee h_b_b = 0 place.reverse..
알고리즘 문제/그리디 문제
2022. 7. 22. 14:01