威尔逊定理
威尔逊定理:
推论:
- 若是质数,则
- 若是大于4的合数,则
题目
已知,求[]是下取整
思路
令,求和项变为: 若为质数,则,即前一项为整数,后一项肯定比前一项少1,则 若是合数,,则,则 因此只需要统计中都合法质数即可,合法质数的样子为
代码
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define debug(x) cout<<"a["<<x<<"]="<<a[x]<<endl;
#define pr(x) cout<<x<<endl;
#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
typedef long long LL;
typedef pair<int, int> PII;
const int INF = 0x3f3f3f3f;
const int N = 3e6 + 10;
int n;
int primes[N];
bool st[N];
int s[N];
// 3k+7
void get_prim(){
for(LL i = 2; i < N; ++i)
if(!st[i]){
if((i-7)%3 == 0)
primes[(i-7)/3] = 1;
for(LL j=i*i; j<N; j+=i)
st[j] = 1;
}
}
int main() {
IOS;
#ifndef ONLINE_JUDGE
freopen("/Users/houyunfei/CLionProjects/MyCppWorkSpace/test.in", "r", stdin);
freopen("/Users/houyunfei/CLionProjects/MyCppWorkSpace/test.out", "w", stdout);
#endif
get_prim();
for(int i=2;i<N;i++)
s[i]=s[i-1]+ primes[i];
int t;
cin>>t;
while (t--){
cin>>n;
pr(s[n])
}
return 0;
}