반응형
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 | 31 |
Tags
- VS
- 심화1
- 코드엔진
- 10807
- Python
- 입문
- C 언어
- greedy
- 파이썬
- C
- C Programming
- 꾸준히
- 친절한 설명
- c언어
- 초보
- HTML
- Implemention
- CSS
- Beakjoon
- 구현
- 백준
- 알고리즘
- 10926
- implement
- 문제풀이
- 문자열
- 설명
- Baekjoon
- 그리디
- 정리
Archives
- Today
- Total
목록round함수 (1)
안경잡이 구루루
백준 4344 ( 평균은 넘겠지 ) [ Python ]
나: C = int(input()) for i in range(C): score = list(map(int, input().split())) cnt =0 if score[0] == len(score)-1: aver = (sum(score)-score[0]) / score[0] for j in range(1,len(score)): if aver < score[j]: cnt +=1 print('%0.3f%%'%((cnt/score[0])*100)) 완성된 코드는 위와 같다. C = int(input()) for i in range(C): score = list(map(int, input().split())) cnt =0 if score[0] == len(score)-1: aver = (sum(score)-s..
파이썬(Python)/문제풀이(백준,BaekJoon)
2020. 6. 25. 15:45