-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.cpp
39 lines (35 loc) · 1.34 KB
/
team.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*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.
input
3
1 1 0
1 1 1
1 0 0
output 2
*/
#include<iostream>
using namespace std;
int main(){
int t;
int reslut=0;
cin>>t;
while(t--){
int counter=0;
int arr[100];
for(int i=0;i<3;i++){
cin>>arr[i];
}
for(int i=0;i<3;i++){
if(arr[i]==1){
counter++;
}
}
if(counter>1){
reslut++;
}
}
cout<<reslut;
return 0;
}