-
[Python][백준] 11399번 ATM 풀이Algorithm/백준 2022. 4. 15. 10:00728x90
length = int(input()) numbers = sorted(list(map(int, input().split()))) result = 0 for i in range(length, 0, -1): result += numbers[-i] * i print(result)
728x90'Algorithm > 백준' 카테고리의 다른 글
[C][백준] 1158번 요세푸스 문제 : C, 원형연결리스트로 해결 (0) 2022.09.01 [Python][백준] 누적 합 알고리즘 | 11659번 구간 합 구하기 4 시간초과 해결 (0) 2022.04.18 [Python][백준] 9375번 패션왕 신해빈 문제 풀이 (0) 2022.04.14 [Python][백준] 문자열 탐색 알고리즘 공부하기 | 백준 5525번 50점 (0) 2022.03.26 [Python][백준] 2579번 계단 오르기 풀이 | DP는 정말 어려워 (0) 2022.03.24