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 }

    简单题,木有卡……

  • 相关阅读:
    jchdl
    jchdl
    UVa 10256 (判断两个凸包相离) The Great Divide
    UVa 11168 (凸包+点到直线距离) Airport
    LA 2572 (求可见圆盘的数量) Kanazawa
    UVa 10652 (简单凸包) Board Wrapping
    UVa 12304 (6个二维几何问题合集) 2D Geometry 110 in 1!
    UVa 10674 (求两圆公切线) Tangents
    UVa 11796 Dog Distance
    LA 3263 (平面图的欧拉定理) That Nice Euler Circuit
  • 原文地址:https://www.cnblogs.com/liuxueyang/p/2952804.html
Copyright © 2011-2022 走看看