QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#604515 | #8761. 另一个计数问题 | UESTC_DECAYALI# | WA | 202ms | 25392kb | C++20 | 2.4kb | 2024-10-02 11:41:21 | 2024-10-02 11:41:22 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int MOD = 998244353, inv2 = (MOD+1)/2, inv3 = (MOD+1)/3, inv6 = (MOD+1)/6;
void inc(int &x, int a){if ((x+=a)>=MOD) x-=MOD;}
void dec(int &x, int a){if ((x-=a)<0) x+=MOD;}
void mul(int &x, int a){x=1LL*x*a%MOD;}
namespace Min25 {
const int $N = 1e6+5;
bool isp[$N]; int pri[$N], totp;
int sp1[$N], g1[$N];
int sp2[$N], g2[$N];
int $n, Sqr, tot, w[$N], ind1[$N], ind2[$N];
void initPri(int n) {
isp[1] = 1;
for (int i=1; i<=n; ++i) {
if (!isp[i]) {
pri[++totp] = i;
sp1[totp] = (sp1[totp-1] + i)%MOD;
sp2[totp] = (sp2[totp-1] + 1LL*i*i)%MOD;
}
for (int j=1; j<=totp&&pri[j]*i<=n; ++j) {
isp[i*pri[j]] = 1;
if (i%pri[j]==0) break;
}
}
}
void initMin25(int n) {
tot = 0;
$n = n;
Sqr = sqrtl(n);
initPri(Sqr);
for (int i=1; i<=n; ) {
int j = n/(n/i);
w[++tot] = n/i;
g1[tot] = w[tot]%MOD;
g2[tot] = g1[tot]*(g1[tot]+1)/2%MOD*(2*g1[tot]+1)%MOD*inv3%MOD;
g1[tot] = g1[tot]*(g1[tot]+1)/2%MOD;
dec(g2[tot], 1); dec(g1[tot], 1);
if (n/i<=Sqr) ind1[n/i]=tot;
else ind2[n/(n/i)]=tot;
i=j+1;
}
for (int i=1; i<=totp; ++i) {
for (int j=1; j<=tot&&pri[i]*pri[i]<=w[j]; ++j) {
int k = w[j]/pri[i]<=Sqr ? ind1[w[j]/pri[i]] : ind2[n/(w[j]/pri[i])];
dec(g1[j], pri[i]*(g1[k]-sp1[i-1]+MOD)%MOD);
dec(g2[j], pri[i]*pri[i]%MOD*(g2[k]-sp2[i-1]+MOD)%MOD);
}
}
}
}using namespace Min25;
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
int n; cin >> n; int nn=n%MOD;
int sum=(nn+2)*(nn-1)%MOD*inv2%MOD;
initMin25(n);
int sp=(g1[1]%MOD-g1[2]%MOD+MOD)%MOD,sp2=(g2[1]%MOD-g2[2]%MOD+MOD)%MOD;
// initMin25(n/2);
// sp=(sp-g1[1]%MOD+MOD)%MOD;
// sp2=(sp2-g2[1]%MOD+MOD)%MOD;
int ans=(sum*sum%MOD-(nn*(n+1)%MOD*(2*nn+1)%MOD*inv6%MOD-1+MOD)%MOD+MOD)%MOD*inv2%MOD;
ans=(ans-sp*sum%MOD+sp2+MOD)%MOD;
ans=(ans+(sp*sp%MOD-sp2+MOD)%MOD*inv2%MOD)%MOD;
cout<<ans<<endl;
// printf("tot=%lld g0=%lld g1=%lld\n", tot, g1[1], g2[1]);
// printf("w:"); for (int i=1; i<=tot; ++i) printf("%lld ", w[i]); puts("");
// printf("g1:"); for (int i=1; i<=tot; ++i) printf("%lld ", g1[i]); puts("");
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 13872kb
input:
4
output:
8
result:
ok 1 number(s): "8"
Test #2:
score: 0
Accepted
time: 0ms
memory: 11820kb
input:
5
output:
8
result:
ok 1 number(s): "8"
Test #3:
score: 0
Accepted
time: 0ms
memory: 11772kb
input:
6
output:
80
result:
ok 1 number(s): "80"
Test #4:
score: 0
Accepted
time: 0ms
memory: 11836kb
input:
7
output:
80
result:
ok 1 number(s): "80"
Test #5:
score: 0
Accepted
time: 1ms
memory: 11932kb
input:
8
output:
200
result:
ok 1 number(s): "200"
Test #6:
score: 0
Accepted
time: 1ms
memory: 11856kb
input:
9
output:
407
result:
ok 1 number(s): "407"
Test #7:
score: 0
Accepted
time: 1ms
memory: 11804kb
input:
10
output:
937
result:
ok 1 number(s): "937"
Test #8:
score: 0
Accepted
time: 0ms
memory: 13876kb
input:
79
output:
3224298
result:
ok 1 number(s): "3224298"
Test #9:
score: 0
Accepted
time: 0ms
memory: 11824kb
input:
123
output:
21077222
result:
ok 1 number(s): "21077222"
Test #10:
score: 0
Accepted
time: 0ms
memory: 11784kb
input:
158
output:
57411585
result:
ok 1 number(s): "57411585"
Test #11:
score: 0
Accepted
time: 1ms
memory: 13872kb
input:
285
output:
605750829
result:
ok 1 number(s): "605750829"
Test #12:
score: 0
Accepted
time: 0ms
memory: 11784kb
input:
355
output:
509863120
result:
ok 1 number(s): "509863120"
Test #13:
score: 0
Accepted
time: 1ms
memory: 11728kb
input:
484
output:
311440260
result:
ok 1 number(s): "311440260"
Test #14:
score: 0
Accepted
time: 1ms
memory: 11832kb
input:
520
output:
102191845
result:
ok 1 number(s): "102191845"
Test #15:
score: 0
Accepted
time: 1ms
memory: 11884kb
input:
706
output:
300787918
result:
ok 1 number(s): "300787918"
Test #16:
score: 0
Accepted
time: 0ms
memory: 13924kb
input:
747
output:
505062591
result:
ok 1 number(s): "505062591"
Test #17:
score: 0
Accepted
time: 1ms
memory: 11820kb
input:
784
output:
181810798
result:
ok 1 number(s): "181810798"
Test #18:
score: 0
Accepted
time: 1ms
memory: 11832kb
input:
76879
output:
716166793
result:
ok 1 number(s): "716166793"
Test #19:
score: 0
Accepted
time: 1ms
memory: 11812kb
input:
209295
output:
753032272
result:
ok 1 number(s): "753032272"
Test #20:
score: 0
Accepted
time: 1ms
memory: 11856kb
input:
220895
output:
874612082
result:
ok 1 number(s): "874612082"
Test #21:
score: 0
Accepted
time: 2ms
memory: 13868kb
input:
243390
output:
68635874
result:
ok 1 number(s): "68635874"
Test #22:
score: 0
Accepted
time: 1ms
memory: 11864kb
input:
414767
output:
862578797
result:
ok 1 number(s): "862578797"
Test #23:
score: 0
Accepted
time: 0ms
memory: 13748kb
input:
431662
output:
231728766
result:
ok 1 number(s): "231728766"
Test #24:
score: 0
Accepted
time: 0ms
memory: 11888kb
input:
521130
output:
106207351
result:
ok 1 number(s): "106207351"
Test #25:
score: 0
Accepted
time: 1ms
memory: 11836kb
input:
668419
output:
580625063
result:
ok 1 number(s): "580625063"
Test #26:
score: 0
Accepted
time: 0ms
memory: 13828kb
input:
700378
output:
790849562
result:
ok 1 number(s): "790849562"
Test #27:
score: 0
Accepted
time: 1ms
memory: 11824kb
input:
965876
output:
856082142
result:
ok 1 number(s): "856082142"
Test #28:
score: 0
Accepted
time: 20ms
memory: 16092kb
input:
998244350
output:
539142456
result:
ok 1 number(s): "539142456"
Test #29:
score: 0
Accepted
time: 19ms
memory: 12136kb
input:
998244351
output:
730264865
result:
ok 1 number(s): "730264865"
Test #30:
score: 0
Accepted
time: 16ms
memory: 12120kb
input:
998244352
output:
326703895
result:
ok 1 number(s): "326703895"
Test #31:
score: 0
Accepted
time: 20ms
memory: 14176kb
input:
998244353
output:
326703895
result:
ok 1 number(s): "326703895"
Test #32:
score: 0
Accepted
time: 20ms
memory: 16196kb
input:
998244354
output:
730264864
result:
ok 1 number(s): "730264864"
Test #33:
score: 0
Accepted
time: 17ms
memory: 16124kb
input:
998244355
output:
539142451
result:
ok 1 number(s): "539142451"
Test #34:
score: 0
Accepted
time: 15ms
memory: 14228kb
input:
998244356
output:
751581014
result:
ok 1 number(s): "751581014"
Test #35:
score: 0
Accepted
time: 29ms
memory: 18388kb
input:
2165916141
output:
216013547
result:
ok 1 number(s): "216013547"
Test #36:
score: 0
Accepted
time: 46ms
memory: 18568kb
input:
3550627266
output:
318019384
result:
ok 1 number(s): "318019384"
Test #37:
score: 0
Accepted
time: 97ms
memory: 21204kb
input:
11640239920
output:
137498099
result:
ok 1 number(s): "137498099"
Test #38:
score: 0
Accepted
time: 127ms
memory: 21380kb
input:
16191777349
output:
991399721
result:
ok 1 number(s): "991399721"
Test #39:
score: -100
Wrong Answer
time: 202ms
memory: 25392kb
input:
31326230483
output:
988093464
result:
wrong answer 1st numbers differ - expected: '99981147', found: '988093464'