比赛 20120707 评测结果 AWWWWAAWWW
题目名称 表达式游戏 最终得分 30
用户昵称 ZhouHang 运行时间 0.004 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-07-07 11:14:31
显示代码纯文本
/**
*Prob	: expression
*Data	: 2012-7-7
*Sol	: 骗分
*/

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>

using namespace std;

int main()
{
	freopen("expression.in","r",stdin);
	freopen("expression.out","w",stdout);
	
	string  s;
	cin>>s;
	
	bool v[5000]; int tot =0;
	memset(v,false,sizeof(v));
	
	for (int i=0; i<s.length(); i++) {
		char tmp = s[i];
		if (!v[tmp]) {
			v[tmp] = true;
			tot++;
		}
	}
	
	printf("%d\n",tot);
	
	fclose(stdin); fclose(stdout);
	return 0;
}