#includeusing namespace std; int n; int m, a; int first; int d = 0, e = 0; int sum = 0, t = 0; int count[1010] = {0}; int main() { scanf("%d",&n); for(int i = 0; i < n; ++i) { scanf("%d",&m); for(int j = 0; j < m; ++j){ scanf("%d",&a); if(a <= 0) { t += a; } else if(a > 0) { if(t > a) { count[i] = 1; } t = a; } } sum += t; if(count[i] == 1) d++; } for(int i = 1; i < n - 1; ++i) { if(count[i-1] == 1 && count[i] == 1 && count[i+1] == 1) e++; } if(count[n-2] == 1 && count[n-1] == 1 && count[0] == 1) e++; if(count[n-1] == 1 && count[0] == 1 && count[1] == 1) e++; printf("%d %d %d",sum,d,e); return 0; }



