티스토리 뷰
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do
n = int(input())
answer = []
for num in range(1, n+1):
strNum = str(num)
temp = ""
for i in range(len(strNum)):
if strNum[i] == '3' or strNum[i] == '6' or strNum[i] == '9':
temp += '-'
if len(temp) == 0: # 369 없으면
answer.append(num)
else:
answer.append(temp)
print(' '.join(map(str,answer)))
설명
입력받은 값만큼 for문을 돌면서
int형 num을 str형으로 바꾸고 str(num)의 각 자리값을 탐색하면서 369가 나오면 '-'를 추가한다.
369가 없으면 원래의 num값을 정답에 추가하고 있으면 나온 개수만큼 '-'를 정답에 추가한다.
'ALGORITHM > SW Expert' 카테고리의 다른 글
[Python]SW Expert - 파스칼의 삼각형(D2) (0) | 2020.03.06 |
---|---|
[Python]SW Expert - 패턴 마디의 길이(D2) (1) | 2020.03.06 |
[Python]SW Expert - 파리 퇴치(D2) (0) | 2020.03.06 |
[Python]SW Expert - 달팽이 숫자(D2) (0) | 2020.03.05 |
[Python] SWExpert - 백만 장자 프로젝트(D2) (0) | 2020.03.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 2019 Kakao Blind Recruitment
- left join
- 우선순위큐
- 파이썬
- 재귀
- 스택
- 괄호
- BOJ
- SW Expert
- hash
- Permutation
- 문자열처리
- 해시
- dictionary
- 2020 KAKAO BLIND RECRUITMENT
- 정렬
- 문자열
- 코딩테스트
- 백준
- 구현
- 완전탐색
- Python
- SWExpert
- 프로그래머스
- 딕셔너리
- combination
- 순열
- 힙
- C++
- programmers
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함