比赛 |
20190908之惊鸿 |
评测结果 |
AAAAAAAAAA |
题目名称 |
笨小猴 |
最终得分 |
100 |
用户昵称 |
七中老王 |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
13.66 MiB |
提交时间 |
2019-09-18 18:22:08 |
显示代码纯文本
#include<iostream>
#include<string>
#include<cstring>
#include<math.h>
#include<cstdio>
using namespace std;
int djx(char a[1001]){
int min=101,max=0,w[1000]={0};
for(int i=0;i<strlen(a);i++){
w[(int)a[i]]++;}
for(int i=0;i<strlen(a);i++){
if(w[(int)a[i]]>=max)max=w[(int)a[i]];
if(w[(int)a[i]]<min)min=w[(int)a[i]];}
return max-min;
}
int main(){
freopen("word.in","r",stdin);
freopen("word.out","w",stdout);
char a[1000];
gets(a);
int p=djx(a);
bool lll[1000]={0};
for(int i=2;i<=sqrt(p);i++)
for(int j=1;j<=p/i;j++)
lll[i*j]=true;
if(lll[p]==true||p==0||p==1){
cout<<"No Answer";
cout<<endl<<0;
}
else{
cout<<"Lucky Word"<<endl<<p;
}
}