728x90
반응형
단순 구현 문제이다.
N = int(input())
cnt = 0
for i in range(1, N+1):
cnt += str(i).count('3')+str(i).count('6')+str(i).count('9')
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 17945번 통학의 신(python) (0) | 2021.03.01 |
---|---|
백준 알고리즘 17618번 신기한 수(python) (0) | 2021.03.01 |
백준 알고리즘 17356번 욱 제(python) (0) | 2021.03.01 |
백준 알고리즘 17210번 문문문(python) (0) | 2021.03.01 |
백준 알고리즘 17174번 전체 계산 횟수(python) (0) | 2021.03.01 |