이번 문제는 n까지의 for문을 돌리며 i에 d가 포함될 경우 그 수만큼 cnt에 더하여 cnt를 출력하는 방법으로 해결했다.
n, d=map(int, input().split()) cnt=0 for i in range(1, n+1): if str(d) in str(i): cnt+=str(i).count(str(d)) print(cnt)