반응형
문제
https://www.acmicpc.net/problem/14912
풀이코드
n, d = map(int, input().split())
answer = 0
d = str(d)
for i in range(1, n +1):
data = str(i)
for c in data:
if c == d:
answer += 1
print(answer)
단순 반복문제이다.
반응형
'Programming > 알고리즘' 카테고리의 다른 글
[백준 / Python] 28293번 자릿수 (0) | 2023.08.08 |
---|---|
[백준 / Python] 28353번 고양이 카페 (2) | 2023.07.22 |
[백준 / Python] 1181번 단어 정렬 (0) | 2023.07.09 |
[백준 / Python] 2941번 크로아티아 알파벳 (1) | 2023.07.02 |
[백준 / Python] 11399번 ATM (1) | 2023.05.27 |
댓글