# 파이썬
n = int(input())
n_list = list(map(int, input().split()))
n_list.sort(reverse=True)
result = n_list.pop(0)
result += sum([i/2 for i in n_list])
print(result)
// 자바
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int count = sc.nextInt();
sc.nextLine();
String[] drinks = sc.nextLine().split(" ");
List<Double> dList = new ArrayList<>();
for(String d:drinks) {
dList.add(Double.parseDouble(d));
}
Collections.sort(dList, Collections.reverseOrder());
Double result = dList.get(0);
for(int i=1; i < dList.size(); i++) {
result += (dList.get(i)/2);
}
System.out.println(result);
}
}
'백준' 카테고리의 다른 글
백준 1620번: 나는야 포켓몬 마스터 이다솜 (파이썬) (0) | 2023.07.29 |
---|---|
백준 1269번: 대칭 차집합 (파이썬) (0) | 2023.07.29 |
백준 14425번: 문자열 집합 (파이썬) (0) | 2023.07.29 |
백준 11478번: 서로 다른 부분 문자열 개수 (파이썬) (0) | 2023.07.29 |
백준 1181번: 단어 정렬 (파이썬) (0) | 2023.07.29 |