记录编号 |
533081 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HZOI 2016]首遇lancer |
最终得分 |
100 |
用户昵称 |
Hale |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.009 s |
提交时间 |
2019-06-14 14:31:42 |
内存使用 |
13.66 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const LL Mod=1e9+7;
LL m,n,ans;
LL step1(LL x)
{
LL m=sqrt(x);LL ans=0;
for (LL i=1;i<=m;i++)
if (x%i==0) ans+=2;
if (m*m==x) ans--;
return ans;
}
LL step2(LL n)
{
LL r=sqrt(n),sum=0;
for (int i=1;i<=r;i++)
if (n%i==0) sum=(sum+step1(i)+step1(n/i))%Mod;
if (r*r==n) sum-=step1(r);
return sum;
}
int main()
{
freopen("lancer.in","r",stdin);
freopen("lancer.out","w",stdout);
scanf("%lld",&n);
printf("%lld",step2(n));
return 0;
}