728x90
반응형
백준 단계별로 풀기 4단계
test_case = int(input())
i = 0
result_list = list()
while i < test_case:
each_case = raw_input()
each_case_list = each_case.split(" ")
student_cnt = int(each_case_list.pop(0))
total_score = 0
for score in each_case_list:
total_score += int(score)
avg_cnt = 0
for score in each_case_list:
if int(score) > (total_score/student_cnt):
avg_cnt += 1
result_list.append("%.3f" % float((float(avg_cnt) / float(student_cnt)) * 100))
i+= 1
for result in result_list:
print str(result)+"%"
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 숫자의 개수 (2577 문제) Python 2 답안 (0) | 2019.01.17 |
---|---|
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 단어의 개수 (1152 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 4단계 if문 사용해보기 - X보다 작은 수(10871 문제) Python 2 답안 (0) | 2019.01.14 |
백준 단계별로 풀기 4단계 if문 사용해보기 - 세수(10817 문제) C언어 답안 (0) | 2019.01.14 |
백준 단계별로 풀기 4단계 if문 사용해보기 - 시험성적(9498번 문제) C언어 답안 (0) | 2019.01.14 |