본문 바로가기

코딩테스트(python)/SWEA

SWEA 1926.py

반응형

1. 문제

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV5PTeo6AHUDFAUq&categoryId=AV5PTeo6AHUDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=2&pageSize=10&pageIndex=1 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

2. 코드

N = int(input())
answer = ""
count = 0

for i in range(1,N+1):
    if str(i).count("3") > 0 or str(i).count("6") > 0 or str(i).count("9") > 0:
        count = str(i).count("3") + str(i).count("6") + str(i).count("9")
        answer += "-" * count
        answer += ' '
    else:
        answer += str(i)+' '

print(answer)
반응형

'코딩테스트(python) > SWEA' 카테고리의 다른 글

SWEA 1859.py  (0) 2022.10.12
SWEA 2072.py  (0) 2022.10.12