当前位置: 代码迷 >> 综合 >> BZOJ [Ahoi2005]COMMON 约数研究
  详细解决方案

BZOJ [Ahoi2005]COMMON 约数研究

热度:86   发布时间:2023-12-14 16:55:14.0

标签:数学

题目

题目传送门

Description

Input

只有一行一个整数 N(0 < N < 1000000)。
Output

只有一行输出,为整数M,即f(1)到f(N)的累加和。
Sample Input

3

Sample Output

5

HINT

Source

Day2

code

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<=b;i++)
using namespace std;long long  ans,n;int main()
{cin>>n;rep(i,1,n)ans+=n/i;cout<<ans<<endl;return 0;
}
  相关解决方案