https://atcoder.jp/contests/jsc2019-qual/tasks/jsc2019_qual_a
解説
https://atcoder.jp/contests/jsc2019-qual/submissions/7120856
Mヶ月でD日なので、全部でMD日分あり、これは全探索が可能である。
全探索をして、条件を満たすものを数え上げよう。
int M, D; //--------------------------------------------------------------------------------------------------- void _main() { cin >> M >> D; int ans = 0; rep(m, 1, M + 1) rep(d1, 2, 10) rep(d10, 2, 10) { if(d10 * 10 + d1 <= D and d1 * d10 == m) ans++; } cout << ans << endl; }