比赛 普及组2016模拟练习3 评测结果 AAAAAAAAAAA
题目名称 焰火表演 最终得分 100
用户昵称 Ge0Bi1Lao0W 运行时间 1.838 s
代码语言 C++ 内存使用 0.81 MiB
提交时间 2016-11-15 20:54:02
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int c,n;
bool b[2000005]={false};
int wjh()
{
    freopen("fireshow.in","r",stdin);
	freopen("fireshow.out","w",stdout);
	cin>>c>>n;
	int ans=0,a[105];
	
	for(int i=1;i<=c;i++)
		cin>>a[i];
	for(int i=1;i<=c;i++)
	{
		for(int j=2;j<=n;j++)
			if(j%a[i]==0)
				b[j]=true;
	}
	for(int j=1;j<=n;j++)
		if(b[j])
			ans++;
		cout<<ans;
	return 0;
}
int W=wjh();
int main()
{
	;
}