일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Set
- Re
- java
- Zip
- 프로그래머스
- 위클리 챌린지
- BFS
- heapq
- 재귀함수
- 백준
- 카카오
- 정규식
- DateTime
- 그리디
- 정렬
- programmers
- 수학
- 다익스트라
- divmod
- 이분탐색
- lambda
- 추석맞이 코딩챌린지
- 동적 계획법
- 자바
- dfs
- KAKAO BLIND RECRUITMENT
- backjoon
- Combinations
- 파이썬
- python
Archives
- Today
- Total
상상쓰
[백준] 슬라임 합치기 본문
https://www.acmicpc.net/problem/14241
슬라임을 합쳐봅시다!
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] = array[i-1] + array[i]
print(answer)
'Coding Test' 카테고리의 다른 글
[백준] ZOAC 2 (0) | 2021.06.30 |
---|---|
[프로그래머스] 체육복 (0) | 2021.06.30 |
[프로그래머스] 디스크 컨트롤러 (0) | 2021.06.29 |
[프로그래머스] 순위 (0) | 2021.06.29 |
[백준] 라디오 (0) | 2021.06.28 |
Comments