码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1968: [Ahoi2005]COMMON 约数研究

时间:2015-04-26 10:38:05      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

技术分享 

水题....随便写都可以过

---------------------------------------------------------------------------

#include<cstdio>
#include<cstring>
#define clr(x, c) memset(x, c, sizeof(x))
using namespace std;
const int maxn = 1000000 + 5;
int f[maxn];
int main()
{
// freopen("test.in", "r", stdin);
clr(f, 0);
int n;
scanf("%d", &n);
for(int i = 1; i <= n; ++i)
for(int j = i; j <= n; j += i) f[j]++;
int ans = 0;
for(int i = 1; i<= n; ++i) ans += f[i];
printf("%d\n", ans);
return 0;
}

--------------------------------------------------------------------------- 

1968: [Ahoi2005]COMMON 约数研究

Time Limit: 1 Sec  Memory Limit: 64 MB
Submit: 1119  Solved: 848
[Submit][Status][Discuss]

Description

技术分享

Input

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

Output

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

Sample Input

3

Sample Output

5

HINT

Source

 

BZOJ 1968: [Ahoi2005]COMMON 约数研究

标签:

原文地址:http://www.cnblogs.com/JSZX11556/p/4457314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!