문제
풀이 (Python)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | C = int(input()) avg = [] for i in range(C): N = list(map(int, input().split())) sum = 0 for j in range(N[0]): sum += N[j+1] cnt = 0 for j in range(N[0]): if N[j+1] > sum/N[0]: cnt += 1 avg.append(cnt/N[0]*100) N.clear() for i in range(C): print('%.3f%%' %avg[i]) | cs |
키워드 (Keyword)
append
- 리스트에 맨 마지막에 요소 추가
참조
https://wikidocs.net/book/1 (점프 투 파이썬-WikiDocs)
문제 출처
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 1065번 (0) | 2018.12.02 |
---|---|
(파이썬) 백준 알고리즘 1110번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 1546번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10871번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 10817번 (0) | 2018.12.02 |