Algorithm(알고리즘)/백준
05_백준 4344 파이썬 -평균은 넘겠지
반응형
출력값이 xx.000 형식으로 고정돼있다.
f string 방식에서 소수점 출력에 조건을 주어야 한다. 소수점 출력 방식 {x:.3f} 를 f string 방식으로 아래와 같이 써줄 수 있다. print(f'{x:.3f}%')
- 풀이
n = int(input())
def avg(students):
total_students = students[0]
avg_point = sum(students[1:]) / total_students
top_students = 0
for i in students[1:]:
if i > avg_point:
top_students +=1
top_rate = top_students/total_students *100
return top_rate
for i in range(n):
students = list(map(int, input().split()))
x = round(avg(students),3)
print(f'{x:.3f}%')
반응형
'Algorithm(알고리즘) > 백준' 카테고리의 다른 글
07_백준 _1157 파이썬 단어 공부 (0) | 2021.06.17 |
---|---|
06_백준 _4673 파이썬 셀프 넘버 (0) | 2021.06.17 |
04_백준 1110번 파이썬 더하기 사이클 (0) | 2021.06.17 |
03_백준 2884번 파이썬 알람시계 (0) | 2021.06.17 |
02_백준 2588 파이썬 곱셈 (0) | 2021.06.17 |
댓글