k = int(input())
max_lope = []
a = 0
for i in range(k):
a = int(input())
max_lope.append(a)
max_lope.sort()
max_weight = 0
for i in range(k):
m = max_lope[i] * (k - i)
if(m > max_weight):
max_weight = m
print(max_weight)
'프로그래밍 > 알고리즘' 카테고리의 다른 글
[Python] 백준 1475번 : 방 번호 (0) | 2020.04.13 |
---|---|
[Python] 백준 1417번 : 국회의원 선거 (0) | 2020.04.02 |
[Python] 백준 2309번 : 일곱난쟁이 (0) | 2020.02.18 |