-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10859.cpp
58 lines (53 loc) · 1.09 KB
/
10859.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve(){
string str; cin >> str;
ll r = stoll(str);
for (ll i = 2; i * i <= r; i++) {
if (r % i == 0) {
cout << "no";
return;
}
}
if (r == 1) {
cout << "no";
return;
}
r = 0;
for (int i = 0; i < str.size(); i++) {
if (str[i] == '3' || str[i] == '4' || str[i] == '7') {
cout << "no";
return;
}
r *= 10;
char c = str[str.size()-1-i];
int t = c - '0';
switch (t) {
case 6:
t = 9;
break;
case 9:
t = 6;
break;
}
r+=t;
}
for (ll i = 2; i * i <= r; i++) {
if (r % i == 0 || r == 1) {
cout << "no";
return;
}
}
if (r == 1) {
cout << "no";
return;
}
cout << "yes";
}
int main()
{
cin.tie(0)->sync_with_stdio(false);
solve();
return 0;
}