zoukankan      html  css  js  c++  java
  • 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 }

    简单题,木有卡……

  • 相关阅读:
    结对项目--四则运算“软件”之升级版
    个人项目--多元四则运算
    《构建之法》1-5章后感
    git bash的安装与配置
    随笔
    numpy数组及处理:效率对比
    完整的中英文词频统计
    组合数据类型,英文词频统计
    9.13作业2(完整温度转换、数字游戏、解析身份证号...)
    Mad Libs游戏,华氏与摄氏转换
  • 原文地址:https://www.cnblogs.com/liuxueyang/p/2952804.html
Copyright © 2011-2022 走看看