Maximal Sum (C# Square Matrix)
60/100 чудно ми е къде е грешката, с входовете всичко си работи, но гърми в judge жестоко :D на два нулеви теста, логиката е за 3 x 3 square. Пробвах и с long, да не би да става много голямо числото, но пак 60/100. В условието не е упоменато, че е динамино намирането на квадрата, а е статично като трябва да е точно 3 на 3.
https://judge.softuni.org/Contests/Compete/Index/1455#2
Maximal Sum
Create a program that reads a rectangular integer matrix of size N x M and finds in it the square 3 x 3 that has maximal sum of its elements.
Input
- On the first line, you will receive the rows N and columns M. On the next N lines you will receive each row with its columns
Output
- Print the elements of the 3 x 3 square as a matrix, along with their sum
Examples
Input |
Matrix |
Output |
4 5 1 5 5 2 4 2 1 4 14 3 3 7 11 2 8 4 8 12 16 4 |
Sum = 75 1 4 14 7 11 2 8 12 16 |