0776 - Cnt Linii

From Bitnami MediaWiki
Revision as of 18:42, 3 April 2023 by MiclausIoana (talk | contribs) (Pagină nouă: == Rezolvare == <syntaxhighlight lang="python" line="1"> n, m = map(int, input().split()) # citim elementele matricei matrix = [] for i in range(n): row = list(map(int, input().split())) matrix.append(row) # determinăm numărul de linii cu toate elementele egale count = 0 for row in matrix: if all(elem == row[0] for elem in row): count += 1 # afișăm rezultatul print(count) </syntaxhighlight>)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Rezolvare

<syntaxhighlight lang="python" line="1"> n, m = map(int, input().split())

  1. citim elementele matricei

matrix = [] for i in range(n):

   row = list(map(int, input().split()))
   matrix.append(row)
  1. determinăm numărul de linii cu toate elementele egale

count = 0 for row in matrix:

   if all(elem == row[0] for elem in row):
       count += 1
  1. afișăm rezultatul

print(count) </syntaxhighlight>