1 条题解

  • 0
    @ 2023-5-13 11:57:30
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0);
        string s;
        getline(cin, s);
        int cnt = 0;
        for (int i = 0; i < s.length(); i++)
            if ('0' <= s[i] && s[i] <= '9' ||
                'a' <= s[i] && s[i] <= 'z' ||
                'A' <= s[i] && s[i] <= 'Z')
                cnt++;
        cout << cnt << "\n";
        return 0;
    }
    
    • 1

    信息

    ID
    115
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    21
    已通过
    12
    上传者