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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
| #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<queue> #include<map> #include<stack> #include<set> #include<bitset> #include<cmath> #include<assert.h> #define inc(i,l,r) for(int i=l;i<=r;i++) #define dec(i,l,r) for(int i=l;i>=r;i--) #define link(x) for(edge *j=h[x];j;j=j->next) #define mem(a) memset(a,0,sizeof(a)) #define ll long long #define succ(x) (1ll<<x) #define lowbit(x) (x&(-x)) #define sqr(x) ((x)*(x)) #define mid (x+y>>1) #define NM 50000005 #define nm 50005 using namespace std; const double pi=acos(-1); const double eps=1e-8; const int inf=998244353; ll read(){ ll x=0,f=1;char ch=getchar(); while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();} while(isdigit(ch))x=x*10+ch-'0',ch=getchar(); return f*x; }
ll n; const int inv2=inf+1>>1; int m,ans,cnt; int prime[NM],phi[NM],tot; bool v[NM]; #include<unordered_map> unordered_map<int,int>mp;
inline void reduce(int&x){x+=x>>31&inf;}
void init(){ cnt=5e7;phi[1]=1; inc(i,2,cnt){ if(!v[i])prime[++tot]=i,phi[i]=i-1; inc(j,1,tot){ if(i*prime[j]>cnt)break; v[i*prime[j]]++; if(i%prime[j]==0){ phi[i*prime[j]]=phi[i]*prime[j]; break; } phi[i*prime[j]]=phi[i]*phi[prime[j]]; } } inc(i,1,cnt)reduce(phi[i]+=phi[i-1]-inf); }
int PH(int n){ if(n<=cnt)return phi[n]; if(mp.count(n))return mp[n]; int ans=1ll*n*(n+1)/2%inf; for(int x=2,y;x<=n;x=y+1){ y=n/(n/x); reduce(ans-=1ll*PH(n/x)*(y-x+1)%inf); } return mp[n]=ans; }
int main(){ init(); int _=read();while(_--){ n=read(); ans=n%inf*((n+1)%inf)%inf*inv2%inf; m=sqrt(n); for(int x=2,y;x<=m;x=y+1){ y=sqrt(n/(n/x/x)); reduce(ans+=n/x/x%inf*(PH(y)-PH(x-1)+inf)%inf-inf); } m=pow(n,1/3.0); inc(i,2,m) for(ll j=n/i/i/i;j;j/=i) reduce(ans+=j%inf*(phi[i]-phi[i-1]+inf)%inf-inf); printf("%d\n",ans); } return 0; }
|