SMALL
문제 출처
풀이 코드
T=input()
phone_num=[]
for t in T:
if t in ['A','B','C']: phone_num.append(2)
elif t in ['D','E','F']:phone_num.append(3)
elif t in ['G','H','I']:phone_num.append(4)
elif t in ['J','K','L']:phone_num.append(5)
elif t in ['M','N','O']:phone_num.append(6)
elif t in ['P','Q','R','S']:phone_num.append(7)
elif t in ['T','U','V']:phone_num.append(8)
else: phone_num.append(9)
print(sum(phone_num)+len(phone_num))
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/1316/파이썬(Python3)] 그룹 단어 체커 (0) | 2021.07.06 |
---|---|
[백준/2941/파이썬(Python3)] 크로아티아 알파벳 (0) | 2021.07.05 |
[백준/2675/파이썬(Python3)] 문자열 반복 (0) | 2021.07.02 |
[백준/10809/파이썬(Python3)] 알파벳 찾기 (0) | 2021.07.01 |
[백준/1157/파이썬(Python3)] 단어 공부 (0) | 2021.06.30 |