Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정렬
- 문자열
- writeup
- SuNiNaTas
- Digital Forensics
- xcz.kr
- cryptography
- 구현
- php
- MySQL
- misc
- C
- Forensics
- Database
- 사칙연산
- 백준
- Web Hacking
- Network
- 써니나타스
- CTF
- Text
- N0Named
- Incognito
- wargame
- 인코그니토
- 수학
- Python
- Web
- HackCTF
- 그리디 알고리즘
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1284번 집 주소 본문
[Baekjoon/Python3] 1284번 집 주소
while True:
tot = 0
num = input()
if num == '0':
break
else:
for n in num:
if n == '1':
tot += 2
elif n == '0':
tot += 4
else:
tot += 3
tot += len(num) + 1
print(tot)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1316번 그룹 단어 체커 (0) | 2020.12.02 |
---|---|
[Baekjoon/Python3] 1292번 쉽게 푸는 문제 (0) | 2020.12.02 |
[Baekjoon/Python3] 1267번 핸드폰 요금 (0) | 2020.12.02 |
[Baekjoon/Python3] 1237번 정ㅋ벅ㅋ (0) | 2020.12.02 |
[Baekjoon/Python3] 1188번 음식 평론가 (0) | 2020.12.02 |
Comments