Răspuns:
#include <iostream>
#include <fstream>
using namespace std;
int x,k,l,lmax,nr;
int main()
{
ifstream f("date.in");
f>>k;
while(f>>x)
{
if(x%k==0)
l++;
else l=0;
if(l>lmax)
{
lmax=l;
nr=1;
}
else if(l==lmax)
nr++;
}
cout<<lmax<<" "<<nr;
return 0;
}
Explicație: