일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- LCS
- 11057
- 11053
- permutation
- 나머지
- 코테
- 1260
- 파이썬
- 매일11시
- 코틀린
- 순열
- 1182
- expo
- 홈화면
- 뒤로가기
- 최소공배수
- 11기
- 11054
- 9095
- 6603
- Kotlin
- itertools
- Python
- lcm
- 괄호
- 앱
- 백준
- 안드로이드
- Android
- Combination
Archives
- Today
- Total
목록백준 11399 (1)
황소개발자
백준 11399 파이썬 python ATM
1 2 3 4 5 6 7 8 9 10 n = int(input()) arr = list(map(int, input().split())) arr.sort() ans = 0 for i in range(n): ans += arr[i] * (n - i) print(ans) http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 그리디는 Greedy 탐욕이다. 시간이 제일 적게 걸리는 사람이 앞으로 올수록 이득이다.
백준 문제 풀이
2019. 10. 26. 21:00