#include <bits/stdc++.h>
using namespace std;
int main(){
string str;
//数组作哈希
int arr[128]={0};
cin>>str;
for(auto e:str){
if(e>=0&&e<=127) arr[e]++;
}
int res=0;
for(auto e:arr){
if(e!=0) res++;
}
cout<<res<<endl;
return 0;
}
HJ10 字符个数统计(C++)- 简单、字符串、哈希
最新推荐文章于 2024-11-05 17:16:24 发布