We will find a way, we always have.

-interstellar

Problem Solving/코드포스

[코드포스] A. Team - 파이썬

Redddy 2022. 7. 7. 00:56

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 - A - Codeforces

 

codeforces.com