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.
📖 Solution
So eazyyy
풀이 까지 영어로 적어보고 싶었지만 아직은 문제 해석하기도 급급...ㅋㅋ
if a+b+c >= 2, then answer plus one.
💻 Code
import sys
input = sys.stdin.readline
ans = 0
for _ in range(int(input())):
a,b,c = map(int,input().rstrip().split())
if a+b+c >= 2: # 문제해결 가능이라면
ans += 1
print(ans)
🔗 Problem
https://codeforces.com/contest/231/problem/A
'Problem Solving > 코드포스' 카테고리의 다른 글
[코드포스] 1872 D. Plus Minus Permutation (0) | 2023.09.10 |
---|---|
[코드포스] 1426 D. Non-zero Segments - 파이썬 (0) | 2022.07.08 |