0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00

P1125 [NOIP2008 提高组] 笨小猴

R63986007
This commit is contained in:
Baoshuo Ren 2021-11-30 20:08:43 +08:00 committed by Baoshuo Ren
parent 0e1640ccee
commit 1d8ca13bfa
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

38
Luogu/P1125/P1125.cpp Normal file
View File

@ -0,0 +1,38 @@
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int max, min;
std::string s;
std::map<char, int> map;
bool isPrime(int x) {
if (x < 2) return false;
for (int i = 2; i * i <= x; i++) {
if (x % i == 0) return false;
}
return true;
}
int main() {
max = std::numeric_limits<int>::min();
min = std::numeric_limits<int>::max();
cin >> s;
for (char c : s) {
map[c]++;
}
for (auto c : map) {
max = std::max(max, c.second);
min = std::min(min, c.second);
}
if (isPrime(max - min)) {
cout << "Lucky Word" << endl
<< max - min << endl;
} else {
cout << "No Answer" << endl
<< 0 << endl;
}
return 0;
}