본문 바로가기
Study/알고리즘

[백준 알고리즘] 5622번 Python

by Becoming a Hacker 2021. 10. 4.
반응형

문제 정보

 

제출 코드

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)

댓글