Magic square
Easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Magic square - a square table, filled n^2 numbers so that the sum of the numbers in each row, each column and both diagonals of the same. Sum of the numbers in each row, column and diagonal, is called the magic constant. Check or specify the square is magical.
Input
The first line contains the number n (1 ≤ n ≤ 100). Next is the n rows of n numbers each. All of the square - the natural numbers not exceeding 32000.
Output
If the specified array is magic - the magic of its output constant, otherwise the output -1.
Examples
Input #1
Answer #1
Submissions 1K
Acceptance rate 27%