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

BZOJ 1968 [Ahoi2005]COMMON 约数研究

时间:2018-02-21 12:22:44      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ring   class   body   研究   题解   stream   iostream   name   pre   

题解:考虑每个因子的贡献,n/d有√n种取值

O(√n)

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int ans;
int n;
int main(){
	cin>>n;
	for(int i=1;i<=n;++i)ans+=n/i;
	cout<<ans<<endl;
	return 0;
}

  

BZOJ 1968 [Ahoi2005]COMMON 约数研究

标签:ring   class   body   研究   题解   stream   iostream   name   pre   

原文地址:https://www.cnblogs.com/zzyer/p/8456396.html

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