比赛 普及水题赛(语言题赛) 评测结果 WWAAAWWWAA
题目名称 笨小猴 最终得分 50
用户昵称 fyb 运行时间 0.006 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2014-10-16 19:37:55
显示代码纯文本
#include <stdio.h>
#include <ctype.h>

int count['z'-'a'+1];

int isprime(int n){
	int i;
	for(i=2;i<n;i++){
		if(n%i==0)
			return 0;
	}
	return 1;
}

int main(){
	int i,c,nmax=0,nmin=100;

	freopen("word.in","r",stdin);
	freopen("word.out","w",stdout);

	while(isalpha(c=getchar())){
		count[c-'a']++;
	}

	for(i=0;i<'z'-'a'+1;i++){
		if(count[i]>nmax)
			nmax=count[i];
		if(count[i]==0)
			continue;
		if(count[i]<nmin)
			nmin=count[i];
	}
	if(isprime(nmax-nmin))
		printf("Lucky Word\n%d",nmax-nmin);
	else
		printf("No Answer\n%d",0);
	return 0;
}