Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

231a codeforces solution in python

n = int(input())
count = 0
for i in range(0, n):
    x = input()
    if x.count('1') >= 2:
        count += 1
print(count)
 
PREVIOUS NEXT
Tagged: #codeforces #solution #python
ADD COMMENT
Topic
Name
5+8 =