Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로그래머스
- hackerrank
- 백준
- Git
- 맥북
- PYTHON
- 더현대서울 맛집
- 코로나19
- ChatGPT
- 편스토랑
- Real or Not? NLP with Disaster Tweets
- Baekjoon
- Kaggle
- 캐치카페
- 금융문자분석경진대회
- 자연어처리
- ubuntu
- github
- dacon
- 편스토랑 우승상품
- 우분투
- SW Expert Academy
- 프로그래머스 파이썬
- Docker
- programmers
- AI 경진대회
- leetcode
- 데이콘
- gs25
- 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1284번 : 집 주소 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 집 주소 입니다.
👨🏻💻 코드 ( Solution )
def home_address(number):
whole_width = 2
num_to_width = {
"0": 4, "1": 2, "2": 3, "3": 3, "4": 3, "5": 3,
"6": 3, "7": 3, "8": 3, "9": 3
}
for num in list(number):
whole_width += num_to_width[num]
whole_width += len(number) - 1
return whole_width
if __name__ == "__main__":
while True:
number = input()
if number == "0":
break
print(home_address(number=number))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 삼총사 (Python) (0) | 2022.10.19 |
---|---|
[BaekJoon] 21598번 : SciComLove (Python) (0) | 2022.10.17 |
[BaekJoon] 25600번 : Triathlon (Python) (0) | 2022.10.15 |
[BaekJoon] 25784번 : Easy-to-Solve Expressions (Python) (0) | 2022.10.14 |
[BaekJoon] 11943번 : 파일 옮기기 (Python) (0) | 2022.10.13 |
Comments