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 }

    简单题,木有卡……

  • 相关阅读:
    摘录一篇 这两天对SSO的认识
    获取文本框中的行
    在窗体数据源中过滤记录
    linux下访问windows的共享
    使用Form作Lookup其窗体位置设置
    窗体数据源连接技巧
    给动态创建的控件指定事件
    Object的使用技巧
    显示进度条SysOperationProgress
    如何解决下载的CHM文件无法显示网页问题
  • 原文地址:https://www.cnblogs.com/liuxueyang/p/2952804.html
Copyright © 2011-2022 走看看