算法:枚举

复杂度:

解题思路:

直接枚举 中的每个数,再依次判断每一位是否等于 即可。

C++ 代码:

#include <iostream>
using namespace std;
 
int main()
{
    int n, x;
    cin >> n >> x;
 
    int res = 0;
    for (int i = 1; i <= n; i++)
        for (int j = i; j; j /= 10)
            if (j % 10 == x)
                res++;
 
    cout << res << endl;
 
    return 0;
}


另外,牛客暑期NOIP真题班限时免费报名
报名链接:https://www.nowcoder.com/courses/cover/live/248
报名优惠券:DCYxdCJ