比赛 |
202110省实验桐柏一中普及组联赛 |
评测结果 |
AWAWAAWAAW |
题目名称 |
Killer |
最终得分 |
60 |
用户昵称 |
nichengyan |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2021-10-18 18:13:12 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int maxn=200;
int m,n,r;
int a[maxn],b[maxn];
int f[maxn];
void init(){
cin>>m>>n>>r;
for(int i=1;i<=m;i++){
cin>>a[i];
}
for(int i=1;i<=n;i++){
cin>>b[i];
}
}
void cal(){
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(b[i]%a[j]==0){
f[i]++;
}
}
}
}
int main(){
freopen("killer.in","r",stdin);
freopen("killer.out","w",stdout);
init();
int flg=0;
cal();
for(int i=1;i<=n;i++){
if(f[i]==m){
flg=1;
}
}
if(flg==1){
for(int i=1;i<=n;i++){
if(f[i]==m){
cout<<i<<" ";
}
}
}
if(flg==0){
for(int i=1;i<=n;i++){
if(f[i]>=r){
flg=1;
cout<<i<<" ";
}
}
}
if(flg==0){
cout<<0;
}
fclose(stdin);
fclose(stdout);
return 0;
}