0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/Luogu/P1865/P1865.cpp

39 lines
691 B
C++

#include <bits/stdc++.h>
using namespace std;
int ans[10000005];
bool isPrime(int x) {
if (x == 1) {
return false;
}
for (int i = 2; i * i <= x; i++) {
if (x % i == 0) {
return false;
}
}
return true;
}
int main() {
int n, m;
cin >> n >> m;
for (int i = 1; i <= m; i++) {
ans[i] = ans[i - 1];
if (isPrime(i)) {
ans[i]++;
}
}
while (n--) {
int l, r;
cin >> l >> r;
if (l > m || r > m || l < 1 || r < 1) {
cout << "Crossing the line" << endl;
} else {
cout << ans[r] - ans[l - 1] << endl;
}
}
return 0;
}