比赛 普及组2016模拟练习3 评测结果 WWWWWWWWWWW
题目名称 焰火表演 最终得分 0
用户昵称 森林 运行时间 0.072 s
代码语言 C++ 内存使用 2.22 MiB
提交时间 2016-11-15 19:49:03
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cstdlib>
using namespace std;
const int maxn=2000000+100;
bool flag[maxn];
int main(){
	#define submit
	#ifdef submit
	freopen("fireshow.in" ,"r", stdin);
	freopen("fireshow.out","w",stdout);
	#endif
	int c,n,tot=0,tmp;
	scanf("%d%d",&c,&n);
	while(c--){
		scanf("%d",&tmp);
		for(int i=0;i<=n;i+=tmp)flag[i]=1;
	}
	for(int i=0;i<=n;++i)tot+=flag[i];
	printf("%d\n",tot);
	#ifdef submit
	fclose(stdin);
	fclose(stdout);
	#else
	system("pause");
	#endif
	return 0;
}