1 条题解

  • 0
    @ 2024-10-29 14:16:28
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
        int n, x, count = 0;
        cin >> n >> x;
    
        for (int i = 1; i <= n; i++) {
            int temp = i;
            while (temp > 0) {
                if (temp % 10 == x) {
                    count++;
                }
                temp /= 10;
            }
        }
    
        cout << count << endl;
        return 0;
    }
    
    • 1

    信息

    ID
    6033
    时间
    1000ms
    内存
    125MiB
    难度
    1
    标签
    递交数
    303
    已通过
    173
    上传者