2020.코딩일지
1차원배열_백준4344번[파이썬python]평균은넘겠지 본문
728x90
진짜 슬픈진실은.....
이제 평균내는건 어렵지 않은데...
출력에서 자꾸 틀리다는것이다😭...
녜.. 가물가물했던 포맷팅을 다시 찾아보겠슴니당
다시 읽어보려고 링크걸어둔 python formatting
https://codechacha.com/ko/python-string-formatting/
https://brownbears.tistory.com/421
27일전... 뭔가를 찾으려고 계속 시도했던거같은데.. 기억이 안난다.
시간이 넘 빠르다... 몇일뒤에 리뷰해야지했는데 벌써 27일이 지났다니!! 😲
정답:
# 1차원배열_백준4344번[파이썬python]평균은넘겠지
T = int(input())
for i in range(T):
inputList = list(map(int, input().split()))
avg = sum(inputList[1:]) / inputList[0]
cnt = 0
for i in inputList[1:]:
if avg < i :
cnt += 1
re = (cnt/inputList[0])*100
print('%.3f' %re + '%')
'백준_Python' 카테고리의 다른 글
함수_4673백준번[파이썬python]셀프넘버 (0) | 2022.01.21 |
---|---|
함수_백준15596번[파이썬python]정수N개의합 (0) | 2022.01.21 |
1차원배열_백준8958번[파이썬python]OX퀴즈 (0) | 2022.01.21 |
1차원배열_백준1546번[파이썬python]평균 (0) | 2022.01.21 |
1차원배열_백준3052번[파이썬python]나머지 (0) | 2022.01.21 |
Comments