일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 재귀함수
- lambda
- 다익스트라
- 파이썬
- Re
- 그리디
- 정규식
- java
- 수학
- 추석맞이 코딩챌린지
- DateTime
- 위클리 챌린지
- 자바
- backjoon
- BFS
- Zip
- heapq
- python
- KAKAO BLIND RECRUITMENT
- 카카오
- dfs
- Set
- 프로그래머스
- 정렬
- divmod
- Combinations
- 동적 계획법
- 백준
- 이분탐색
- programmers
Archives
- Today
- Total
목록슬라임 합치기 (1)
상상쓰
[백준] 슬라임 합치기
https://www.acmicpc.net/problem/14241 14241번: 슬라임 합치기 영선이와 효빈이는 슬라임을 합치는 게임을 하고 있다. 두 사람은 두 슬라임을 골라서 하나로 합쳐야 한다. 게임은 슬라임이 하나 남았을 때 끝난다. 모든 슬라임은 양수 크기를 가지고 있다. 두 www.acmicpc.net 슬라임을 합쳐봅시다! import sys N = int(sys.stdin.readline()) array = list(map(int, sys.stdin.readline().split())) array.sort(reverse=True) answer = 0 for i in range(1, len(array)): answer += (array[i-1] * array[i]) array[i] = arr..
Coding Test
2021. 6. 29. 16:31