比赛 普及组2016模拟练习3 评测结果 AAAAAAAAAAA
题目名称 焰火表演 最终得分 100
用户昵称 zero 运行时间 0.228 s
代码语言 C++ 内存使用 7.94 MiB
提交时间 2016-11-15 20:06:32
显示代码纯文本
#include <iostream>
#include <cstdio>
using namespace std;
int timer[2000001]={0};
int main(){
	freopen("fireshow.in","r",stdin);
	freopen("fireshow.out","w",stdout);
	int ti,n,c,max=0;
	cin>>c>>n;
	for(int i=1;i<=c;i++)
	{
		cin>>ti;
		for(int j=1;ti*j<=n;j++){
			timer[ti*j]=1;
		}
	}
	for(int k=1;k<=n;k++)
	{
		if(timer[k]==1){
			max++;
		}
	}
	cout<<max;
	return 0;
}