반응형
문제 정보
제출 코드
word = input()
total = 0
time_list = {"A":3,"B":3,"C":3,"D":4,"E":4,"F":4,"G":5,"H":5,"I":5,"J":6,"K":6,"L":6,"M":7,"N":7,"O":7,"P":8,"Q":8,"R":8,"S":8,"T":9,"U":9,"V":9,"W":10,"X":10,"Y":10,"Z":10}
for s in word:
total += time_list[s]
print(total)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1316번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 2941번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2908번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1152번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1157번 Python (0) | 2021.10.04 |
댓글