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 | 31 |
Tags
- 웹어플리케이션 서버
- 백준 17779
- 백준 17626
- Spring Boot
- 백준 15685
- 백준
- spring oauth
- spring cloud
- Spring
- 파이썬
- JVM
- 백준 16719
- re.split
- with recursive
- 백준 19238
- sql 기술면접
- JPA
- 프로래머스
- 프로그래머스
- springboot
- 백준 16236
- java
- 백준 파이썬
- Kotlin
- 백준 16235
- java 기술면접
- MSA
- spring security
- MySQL
- Coroutine
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 |