Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 금융문자분석경진대회
- 자연어처리
- 파이썬
- 프로그래머스 파이썬
- 편스토랑
- SW Expert Academy
- gs25
- AI 경진대회
- 맥북
- hackerrank
- Docker
- Real or Not? NLP with Disaster Tweets
- leetcode
- Kaggle
- Git
- 데이콘
- 코로나19
- 캐치카페
- 더현대서울 맛집
- programmers
- dacon
- github
- ChatGPT
- Baekjoon
- PYTHON
- 프로그래머스
- 백준
- 우분투
- ubuntu
- 편스토랑 우승상품
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 9076번 : 점수 집계 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 점수 집계 입니다.
👨🏻💻 코드 ( Solution )
def score_aggregation(scores):
scores.remove(max(scores))
scores.remove(min(scores))
if max(scores) - min(scores) > 3:
answer = "KIN"
else:
answer = sum(scores)
return answer
if __name__ == "__main__":
for _ in range(int(input())):
scores = list(map(int, input().split()))
print(score_aggregation(scores))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2441번 : 별 찍기 - 4 (Python) (0) | 2021.12.09 |
---|---|
[BaekJoon] 11021번 : A+B - 7 (Python) (0) | 2021.12.08 |
[BaekJoon] 1735번 : 분수 합 (Python) (0) | 2021.12.06 |
[BaekJoon] 2752번 : 세수정렬 (Python) (0) | 2021.12.05 |
[BaekJoon] 2910번 : 빈도 정렬 (Python) (0) | 2021.12.04 |
Comments