提交时间:2025-07-05 15:48:19
运行 ID: 328128
m=int(input()) n=int(input()) l=list(map(int,input().split())) c=0 for i in l: if i%m==0: c+=1 print(c)