0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00
OI-codes/Luogu/P3912/P3912.cpp

24 lines
465 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int s = n - 1;
bool prime[100000005];
memset(prime, 0, sizeof(prime));
for (int i = 2; i * i <= n; i++) {
if (!prime[i]) {
for (int j = i * 2; j <= n; j += i) {
if (!prime[j]) {
prime[j] = true;
s--;
}
}
}
}
cout << s << endl;
return 0;
}