摘要: 题意: 求区间(0,n)之间能被集合A内一个元素整除的数的个数,例如n = 12, A = {2, 3} 则能被A集合元素整除的数的集合为{2,3,4,6,8,9,10}则结果为7。http://acm.hdu.edu.cn/showproblem.php?pid=1796#include<iostream>#include<cstdio>using namespace std;#define LL long longint len,num[20];LL n,sum;LL gcd(LL a,LL b){ if(b==0) return a; return gcd(b,a 阅读全文
posted @ 2012-07-29 10:44 qijinbiao1 阅读(206) 评论(0) 推荐(0) 编辑