比赛 202110省实验桐柏一中普及组联赛 评测结果 AAAWAWWWAW
题目名称 Killer 最终得分 50
用户昵称 KHYL 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-10-20 19:15:28
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int m,n,r,ans=0,w=0,x=0;
int a[101]={0},b[101]={0};
int c[101]={0};
int main(){
	freopen("killer.in","r",stdin);
	freopen("killer.out","w",stdout);
	cin>>m>>n>>r;
	for(int i=1;i<=m;i++)
	    cin>>a[i];
	for(int i=1;i<=n;i++)
		cin>>b[i];
			
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			if(b[i]%a[j]==0){
				c[i]++;	
			}
		}
	}
	for(int i=1;i<=n;i++){
		if(c[i]==m) {
			cout<<i<<" ";
			w=1;
		}
	}
	if(w==0){
		for(int i=1;i<=n;i++){
			if(r<=c[i]) {
				cout<<i<<" ";
				x=1;
			}
		}
		if(x=0) cout<<"0";
	}
	
	return 0;
}