#include<stdio.h>
int main()
{
int N, D;
double e;
scanf("%d%lf%d", &N, &e, &D);
int i, j;
int mayEmpty=0, empty=0;
for(i=0; i<N; i++)
{
int K, emptyDayCount = 0, flagDay=0;
double num;
scanf("%d", &K);
for(j=0; j<K; j++)
{
scanf("%lf", &num);
if(num < e)
{
emptyDayCount ++;
}
}
if(emptyDayCount > K/2)
{
if(K>D)
{
empty++;
}
else
mayEmpty++;
}
}
double mayEmptyRate = mayEmpty * 100 / N;
double emptyRate = empty *100 / N;
printf("%.1lf%% ", mayEmptyRate);
printf("%.1lf%%", emptyRate);
return 0;
}
网友评论