백준(BOJ) 풀이

[백준 5622] 다이얼

오호라-노이혼 2019. 11. 14. 09:14

dic = {'a':2, 'b':2, 'c':2, 'd':3, 'e':3,
       'f':3, 'g':4, 'h':4, 'i':4, 'j':5, 
       'k':5, 'l':5, 'm':6, 'n':6, 'o':6,
       'p':7, 'q':7, 'r':7, 's':7, 't':8,
       'u':8, 'v':8, 'w':9, 'x':9, 'y':9,
       'z':9}

Dail=input().rstrip().lower()
ans=0
for i in Dail:
    ans+=dic[i]+1
print(ans)