Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <ctype.h>
- int main(int argc, const char * argv[])
- {
- int n, m;
- scanf("%d%d", &n, &m);
- int mat[n][m];
- for(int i =0 ; i < n; i++) {
- for(int j = 0; j < m; j++) {
- scanf("%d", &mat[i][j]);
- }
- }
- int najgolem = 0;
- for(int i = 0; i < n; i++) {
- int brojac =0 ;
- for(int j = 0; j < m; j++) {
- if(mat[i][j] == 1) {
- brojac++;
- }
- else {
- brojac = 0;
- }
- if(brojac > najgolem) {
- najgolem = brojac;
- }
- }
- }
- for(int j = 0; j < m; j++) {
- int brojac =0 ;
- for(int i = 0; i < n; i++) {
- if(mat[i][j] == 1) {
- brojac++;
- }
- else {
- brojac = 0;
- }
- if(brojac > najgolem) {
- najgolem = brojac;
- }
- }
- }
- printf("%d\n", najgolem);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement