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
- ORM
- 백준
- Git
- combinations
- postreSQL
- codecov
- Gunicorn
- SQL
- stack&que
- permutations
- TDD
- Django
- algorithm
- Programmers
- Bruteforce
- ws
- stateful
- pytest
- AWS
- was
- Q objects
- utils
- HTTP 완벽 가이드
- Stack
- Python
- dictionary
- greedy
- Unit Testing
- stateless
- Query
Archives
- Today
- Total
해피 코딩!
[백준] 11399 ATM 본문
n = int(input())
p_lst = list(map(int, input().split()))
p_lst.sort(key = lambda x:x)
sum_data = 0
answer = 0
for i in p_lst:
sum_data+=i
answer+=sum_data
print(answer)
피보나치 형식으로 풀어보려다가 괜히 시간을 많이 날린 문제였다..
'알고리즘' 카테고리의 다른 글
[백준] 1541번 잃어버린 괄호 (0) | 2021.01.01 |
---|---|
[백준] 2108 통계학 (0) | 2020.12.31 |
[백준] 12865번 평범한 배낭 (0) | 2020.12.30 |
[백준] 10989번 수 정렬하기 3 (0) | 2020.12.28 |
[백준] 10814 나이순 정렬 (0) | 2020.12.28 |
Comments