Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- Kotlin
- sql 기술면접
- java 기술면접
- spring security
- JPA
- 백준 파이썬
- re.split
- 프로래머스
- 백준 15685
- Coroutine
- java
- spring cloud
- 백준 17779
- 백준 16236
- MSA
- JVM
- 파이썬
- 백준 16719
- 백준 19238
- Spring Boot
- 웹어플리케이션 서버
- springboot
- spring oauth
- 백준 16235
- Spring
- MySQL
- 프로그래머스
- 백준 17626
- with recursive
Archives
- Today
- Total
시작이 반
[백준] 11399번 (python 파이썬) 본문
SMALL
시간 순으로 오름차순으로 정렬을 한뒤 시간이 빨리 끝나는 것부터 처리해준다.
n = int(input())
time = list(map(int, input().split()))
time.sort()
result_list = list()
result = 0
for i in range(n):
result += time[i]
result_list.append(result)
print(sum(result_list))
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2981번 (python 파이썬) (0) | 2021.03.01 |
---|---|
[백준] 1541번 (python 파이썬) (0) | 2021.03.01 |
[백준] 1931번 (python 파이썬) (0) | 2021.02.28 |
[백준] 11047번 (python 파이썬) (0) | 2021.02.27 |
[백준] 12865번(python 파이썬) (0) | 2021.02.26 |