-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab_10.cpp
More file actions
42 lines (35 loc) · 926 Bytes
/
Copy pathLab_10.cpp
File metadata and controls
42 lines (35 loc) · 926 Bytes
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
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
bool isPrime(int n) {
if (n <= 1) return false;
if (n <= 3) return true;
if (n % 2 == 0 || n % 3 == 0) return false;
for (int i = 5; i * i <= n; i += 6) {
if (n % i == 0 || n % (i + 2) == 0) return false;
}
return true;
}
bool isSpecialPrime(int num) {
string s = to_string(num);
int len = s.length();
for (int i = 1; i <= len; i++) {
int prefix = stoi(s.substr(0, i));
if (!isPrime(prefix)) {
return false;
}
}
return true;
}
int main() {
int n;
cin >> n;
for (int i = n - 1; i >= 2; i--) {
if (isSpecialPrime(i)) {
cout << i << endl;
break;
}
}
return 0;
}