지나가던 개발자
[Python] 백준 25206번(너의 평점은) 문제 풀이 본문
rate = 0
scoreSum = 0
rating = {"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}
for i in range(20):
subject, score, grade = input().split()
if grade == "P":
continue
rate += float(score) * rating[grade]
scoreSum += float(score)
print(rate/scoreSum)
'PS > Python' 카테고리의 다른 글
[Python] 백준 10384번(팬그램) 문제 풀이 (0) | 2022.11.14 |
---|---|
[Python] 백준 11536번(줄 세우기) 문제 풀이 (0) | 2022.11.14 |
[Python] 백준 5637번(가장 긴 단어) 문제 풀이 (0) | 2022.11.12 |
[Python] 17176번(암호해독기) 문제 풀이 (0) | 2022.11.11 |
[Python] 백준 14490번(백대열) 문제 풀이 (0) | 2022.11.10 |
Comments