problem
One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution. Otherwise, the friends won't write the problem's solution.
This contest offers n problems to the participants. For each problem we know, which friend is sure about the solution. Help the friends find the number of problems for which they will write a solution.
Input
The first input line contains a single integer n (1 ≤ n ≤ 1000) — the number of problems in the contest. Then n lines contain three integers each, each integer is either 0 or 1. If the first number in the line equals 1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second number shows Vasya's view on the solution, the third number shows Tonya's view. The numbers on the lines are separated by spaces.
Output
Print a single integer — the number of problems the friends will implement on the contest.
Using language : python3
input1 = input()
loop = int(input1)
answer = 0
for count in range(0,loop):
user_count = 0
User_Solution = list(map(int,input().split()))
for check in User_Solution:
if check == 1 :
user_count +=1
if user_count > 1 :
answer += 1
print(answer)
'알고리즘(Python,Java)' 카테고리의 다른 글
[codeforces] A. Bit++ (0) | 2019.08.22 |
---|---|
[codeforces] A. Domino piling (0) | 2019.08.22 |
[codeforces] A. String Task (0) | 2019.08.21 |
[codeforces] A. Next Round (0) | 2019.08.21 |
[Codeforces]A. Way Too Long Words (0) | 2019.08.18 |
#IT #먹방 #전자기기 #일상
#개발 #일상