CF 231A Team

A - Team
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

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.

Sample Input

Input
3
1 1 0
1 1 1
1 0 0
Output
2
Input
2
1 0 0
0 1 1
Output
1

 1 #include <cstdio>
 2 using namespace std;
 3 int main(void){
 4   int n, cnt = 0, t; 
 5   while (~scanf("%d", &n)){
 6     cnt = 0;
 7     for (int i = 0; i < n; ++i){
 8       int cmt = 0;
 9       for (int i = 0; i < 3; ++i) {
10         scanf("%d", &t); if (t) cmt++;
11       }
12       if (cmt > 1) cnt++;
13     }
14     printf("%d\n", cnt);
15   }
16   return 0;
17 }

简单题,木有卡……

原文地址:https://www.cnblogs.com/liuxueyang/p/2952804.html