(157A)

来源:互联网 发布:巨森网络 编辑:程序博客网 时间:2024/04/30 14:18

Sherlock Holmes and Dr. Watson played some game on a checkered board n × n in size. During the game they put numbers on the board's squares by some tricky rules we don't know. However, the game is now over and each square of the board contains exactly one number. To understand who has won, they need to count the number of winning squares. To determine if the particular square is winning you should do the following. Calculate the sum of all numbers on the squares that share this column (including the given square) and separately calculate the sum of all numbers on the squares that share this row (including the given square). A square is consideredwinning if the sum of the column numbers is strictly greater than the sum of the row numbers.

For instance, lets game was ended like is shown in the picture. Then the purple cell is winning, because the sum of its column numbers equals 8 + 3 + 6 + 7 = 24, sum of its row numbers equals 9 + 5 + 3 + 2 = 19, and 24 > 19.

Input

The first line contains an integer n (1 ≤ n ≤ 30). Each of the following n lines contain n space-separated integers. The j-th number on the i-th line represents the number on the square that belongs to the j-th column and the i-th row on the board. All number on the board are integers from 1 to 100.

Output

Print the single number — the number of the winning squares.

Sample Input

Input
11
Output
0
Input
21 23 4
Output
2
Input
45 7 8 49 5 3 21 6 6 49 5 7 3
Output
6

Hint

In the first example two upper squares are winning.

In the third example three left squares in the both middle rows are winning:

5 7 8 4953 2166 4

9 5 7 3

#include <stdio.h> #include <string.h>  #include <math.h>  #include <stdlib.h>  #include <ctype.h>  int main()  {  int n,i,j;int count,sum;int s[50][50];int hang[50];int lie[50];while(scanf("%d",&n)!=EOF){memset(s,0,sizeof(s));memset(hang,0,sizeof(hang));memset(lie,0,sizeof(lie));count=0;for(i=0;i<n;i++){for(j=0;j<n;j++)scanf("%d",&s[i][j]);}for(i=0;i<n;i++){sum=0;for(j=0;j<n;j++){sum+=s[i][j];}hang[i]=sum;}for(i=0;i<n;i++){sum=0;for(j=0;j<n;j++){sum+=s[j][i];}lie[i]=sum;}for(i=0;i<n;i++){for(j=0;j<n;j++){if(hang[i]<lie[j])count++;}}printf("%d\n",count);}     return 0;  } 


0 0