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
- 편스토랑 우승상품
- 백준
- gs25
- 데이콘
- 우분투
- Git
- Real or Not? NLP with Disaster Tweets
- Baekjoon
- 자연어처리
- 더현대서울 맛집
- Kaggle
- leetcode
- Docker
- PYTHON
- dacon
- 프로그래머스
- ubuntu
- 코로나19
- AI 경진대회
- 맥북
- hackerrank
- SW Expert Academy
- github
- 금융문자분석경진대회
- 파이썬
- 캐치카페
- 프로그래머스 파이썬
- ChatGPT
- programmers
- 편스토랑
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 25206번 : 너의 평점은 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 너의 평점은 입니다.
👨🏻💻 문제 풀이
이 문제는 매년 학기가 끝날때마다 대학생이라면 한번 쯤은 해보았던 학점 계산을 직접 구현하는 문제입니다.
패스 / 논패스 과목을 제외하고 나머지 과목의 결과를 바탕으로 평점을 계산 하면 됩니다.
def convert_rating_to_score(rating):
rating_dict = {
"A+": 4.5, "A0": 4.0, "B+": 3.5, "B0": 3.0,
"C+": 2.5, "C0": 2.0, "D+": 1.5, "D0": 1.0,
"F": 0.0
}
return rating_dict[rating]
def calculate_grade(record_list):
total_time, total_score = 0, 0
for record in record_list:
subject_name, time, rating = record.split()
if rating == "P":
continue
total_time += float(time)
total_score += convert_rating_to_score(rating=rating) * float(time)
return total_score / total_time
마지막으로 하위 6자리까지 출력하는데에는 % 를 활용하였습니다.
def make_answer_format(answer):
return "%.6f"%answer
👨🏻💻 코드 ( Solution )
def convert_rating_to_score(rating):
rating_dict = {
"A+": 4.5, "A0": 4.0, "B+": 3.5, "B0": 3.0,
"C+": 2.5, "C0": 2.0, "D+": 1.5, "D0": 1.0,
"F": 0.0
}
return rating_dict[rating]
def calculate_grade(record_list):
total_time, total_score = 0, 0
for record in record_list:
subject_name, time, rating = record.split()
if rating == "P":
continue
total_time += float(time)
total_score += convert_rating_to_score(rating=rating) * float(time)
return total_score / total_time
def make_answer_format(answer):
return "%.6f"%answer
if __name__ == "__main__":
record_list = []
for _ in range(20):
record = input()
record_list.append(record)
answer = calculate_grade(
record_list=record_list
)
print(make_answer_format(answer=answer))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 15702번 : 중간고사 채점 (Python) (0) | 2022.09.16 |
---|---|
[BaekJoon] 25325번 : 학생 인기도 측정 (Python) (1) | 2022.09.15 |
[BaekJoon] 20499번 : Darius님 한타 안 함? (Python) (0) | 2022.09.13 |
[BaekJoon] 5235번 : Even Sum More Than Odd Sum (Python) (0) | 2022.09.12 |
[BaekJoon] 3486번 : Adding Reversed Number (Python) (0) | 2022.09.11 |
Comments