백준 4344 평균은 넘겠지

Dreamer_01·2021년 1월 9일
0

알고리즘 풀이

목록 보기
20/34

문제링크: https://www.acmicpc.net/problem/4344

문제가 처음부터 비꼰다 ㅠㅠㅠㅠ

처음 틀릴때는 %를 넣지 않았고,

런타임 에러가 난 부분은 '%'때문에 난듯하다. 그래서 뒤에 +'%'를 붙이는 식으로 해결하였다.

마지막에 틀렸던 부분은 범위 설정을 잘못 하여서 그랬다.

n = int(input())

for i in range(n):
    aver_stu = 0
    stu_sco = list(map(int, input().split()))
    students = stu_sco[0]
    score = stu_sco[1:]
    average = sum(score)/students
    for j in score:
        if j > average:
            aver_stu += 1
    print('%.3f' % (aver_stu/students*100)+'%')

간단한 코드

c = int(input())
for i in range(c):
    a = list(map(int,input().split()[1:]))
    b = sum(map(lambda x: x>sum(a)/len(a), a))
    print('{0:0.3f}%'.format(round(b/len(a)*100,3)))

lambda: 'lambda 인자 : 표현식'의 형태로 쓰인다.
변수 b에는 결국 평균보다 큰 값을 a를 순회하면서 모두 해당 값을 더해주는 것으로 이해하였다.

map(변환 함수, 순회 가능한 데이터)

format과 round함수는 두 함수 모두 소숫점을 표현 할 수 있는 함수이다.
특징이 있다면, format은 정렬까지 가능하다는 것이다.

round()함수는 round(실수,n) 형태
round() 함수는 끝자리가 0이면 출력을 하지 않는 문제가 있다.
round(3.141592, 2)는 3.14를 출력하지만, round(3.101592, 2)는 3.1을 출력한다.

format() 함수는 format(item, 폭(width).정밀도(precision)f)의 형태로 사용하면 된다.

0개의 댓글

관련 채용 정보