250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ORDER BY
- 파이썬 몫
- Len
- sql
- 파이썬 슬라이싱
- css
- python
- List Comprehension
- 프로그래머스
- 코딩테스트 연습
- 프로젝트
- YOLOv5
- 설계
- html
- 파이썬
- Django
- 아이엠어바텐더
- 데이터
- SQL 고득점 Kit
- map
- pcce 기출문제
- where
- 백준
- 단어 공부
- GIT
- Python3
- Join
- 슬라이싱
- date_format
- count
Archives
- Today
- Total
목록평균은 넘겠지 (1)
nan + nan = 2nan
[백준][Python3] #4344. 평균은 넘겠지
코드 입력 ##### float 사용하는데, 소수점 셋째 자리까지 출력하는 방법을 생각해봐야 한다. N = int(input()) for i in range(N): score = list(map(int, input().split())) avgsum = sum(score[1:]) / len(score[1:]) cnt = 0 # for i in score[1:]: # float 인 avgsum 과 list인 score[1:]을 비교할 방법. if i > avgsum: cnt += 1 # else: # cnt = 1 rate = cnt / score[0] * 100 print(f'{rate:.3f}%') 이전에 풀었던 OX문제와 비슷한 양상이다. 처음에 입력할 학생 수를 int(input())으로 출력한다. ..
Python/백준 알고리즘
2021. 8. 15. 02:00