Matriu d'uns i zeros
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
Donada la següent matriu, compta el número de zeros i uns que hi ha.
Input Format
El primer nombre \(F\) indica les files que té la matriu.
El segon nombre \(C\) indica les columnes que té la matriu.
A continuació venen els números de la matriu.
Constraints
-
Output Format
S'imprimiran el nombre de zeros i uns separats per espai en blanc.
Test Case 1
Input
2 4
0 1 0 1
1 1 1 0
Output
3 5
Test Case 2
Input
4 6
1 1 0 1 0 0
1 1 1 0 1 0
0 1 0 1 1 0
1 0 1 1 1 1
Output
9 15
Test Case 3
Input
5 3
1 0 0
0 1 0
0 1 1
1 1 0
1 1 1
Output
6 9
CC BY-NC-SA 4.0