比赛 |
20190908之惊鸿 |
评测结果 |
AAAAAAAAAA |
题目名称 |
笨小猴 |
最终得分 |
100 |
用户昵称 |
梦那边的美好ET |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
13.66 MiB |
提交时间 |
2019-09-08 13:42:20 |
显示代码纯文本
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int mp[27],ls,ma=0,mi=100,p;
char s[101];
int ju(int x){
if(x<=1)return 1;
for(int i=2;i*i<=x;i++)
if(x%i==0)
return 1;
return 0;
}
int main(){
freopen("word.in","r",stdin);
freopen("word.out","w",stdout);
cin>>s;
ls=strlen(s);
for(int i=0;i<ls;i++)mp[s[i]-'a'+1]+=1;
for(int i=1;i<=26;i++){
if(mp[i]!=0){
ma=max(ma,mp[i]);
mi=min(mi,mp[i]);
}
}
p=ma-mi;
if(ju(p))cout<<"No Answer"<<endl<<0;
else cout<<"Lucky Word"<<endl<<p;
return 0;
}