https://atcoder.jp/contests/abc336/tasks/abc336_e E - Digit Sum Divisible AtCoder is a programming contest site for anyone from beginners to experts. We hold weekly programming contests online. atcoder.jp 문제 요약 $N$보다 작거나 같은 수 중 Digit Sum으로 나누어 떨어지는 수의 개수를 구하라. 풀이 가능한 모든 Digit Sum에 대한 Digit DP 값들을 모두 더해주자. Digit DP를 할 것이기 때문에, 주어진 수를 문자열로 바꾸어주자. ex) 2024 → 00000000002024 dp[i][j][k][s][f]를 다음과 같이..