QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#220855 | #6740. Function | ycccc319 | WA | 75ms | 4228kb | C++17 | 653b | 2023-10-20 21:48:34 | 2023-10-20 21:48:34 |
Judging History
answer
#include <bits/stdc++.h>
#define mod 998244353
#define ll long long
using namespace std;
ll n;
unordered_map<ll,ll> ff;
ll fk(ll x)
{
ll f(ll x);
ll ans=0;
ll tmp=x;
for(ll l=1,r=0;l<=tmp;l=r+1)
{
r = tmp / (tmp / l);
if(l==1) continue;
ans=(ans+(r-l+1)*f(x/l)%mod)%mod;
}
return ans;
}
ll f(ll x)
{
if(ff.count(x)) return ff[x];
if(x==0)
{
return 0;
}
else if(x<=n/20230926)
{
return 0;
}
else
{
return ff[x]=(fk(x)+1)%mod;
}
}
int main() {
cin>>n;
cout<<(int64_t)f(n);
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3572kb
input:
1
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3792kb
input:
2
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
100
output:
949
result:
ok 1 number(s): "949"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
10
output:
19
result:
ok 1 number(s): "19"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
1000
output:
48614
result:
ok 1 number(s): "48614"
Test #6:
score: 0
Accepted
time: 1ms
memory: 3544kb
input:
10000
output:
2602393
result:
ok 1 number(s): "2602393"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
100000
output:
139804054
result:
ok 1 number(s): "139804054"
Test #8:
score: 0
Accepted
time: 3ms
memory: 3712kb
input:
1000000
output:
521718285
result:
ok 1 number(s): "521718285"
Test #9:
score: 0
Accepted
time: 13ms
memory: 3812kb
input:
10000000
output:
503104917
result:
ok 1 number(s): "503104917"
Test #10:
score: -100
Wrong Answer
time: 75ms
memory: 4228kb
input:
100000000
output:
552731650
result:
wrong answer 1st numbers differ - expected: '198815604', found: '552731650'