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
- 사칙연산
- Digital Forensics
- 그리디 알고리즘
- Network
- 정렬
- Forensics
- Python
- CTF
- Text
- Web
- 수학
- 인코그니토
- Database
- C
- N0Named
- cryptography
- xcz.kr
- MySQL
- SuNiNaTas
- HackCTF
- 백준
- Incognito
- 써니나타스
- writeup
- 문자열
- Web Hacking
- wargame
- php
- misc
- 구현
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 4673번 셀프 넘버 본문
[Baekjoon/Python3] 4673번 셀프 넘버
def d():
not_self = []
num = 0
for i in range(1, 10001): # 1 ~ 9999
if i < 10: # 한자리수
num = i + i
not_self.append(num)
elif i < 100: # 두자리수
num = i + (i // 10) + (i % 10)
not_self.append(num)
elif i < 1000: # 세자리수
num = i + (i // 100) + ((i % 100) // 10) + ((i % 100) % 10)
not_self.append(num)
elif i < 10000: # 네자리수
num = i + (i // 1000) + ((i % 1000) // 100) + (((i % 1000) % 100) // 10) + (((i % 1000) % 100) % 10)
if num <= 10000:
not_self.append(num) # 생성자 예외처리
not_self.sort() # 오름차순
self = [res for res in range(1, 10001) if res not in not_self] # if ~ not in ~
for self_num in self:
print(self_num)
d()
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 4880번 다음수 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 4796번 캠핑 (0) | 2020.12.04 |
[Baekjoon/Python3] 4641번 Doubles (0) | 2020.12.04 |
[Baekjoon/Python3] 4504번 배수 찾기 (0) | 2020.12.04 |
[Baekjoon/Python3] 4470번 줄번호 (0) | 2020.12.04 |
Comments