zoukankan      html  css  js  c++  java
  • World Cup

    World Cup

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other)
    Total Submission(s) : 62   Accepted Submission(s) : 29
    Problem Description

    A World Cup of association football is being held with teams from around the world. The standing is based on the number of points won by the teams, and the distribution of points is done the usual way. That is, when a teams wins a match, it receives 3 points; if the match ends in a draw, both teams receive 1 point; and the loser doesn’t receive any points.

    Given the current standing of the teams and the number of teams participating in the World Cup, your task is to determine how many matches ended in a draw till the moment.

     
    Input

    The input contains several test cases. The first line of a test case contains two integers T and N, indicating respectively the number of participating teams (0 ≤T ≤ 200) and the number of played matches (0 ≤ N ≤ 10000). Each one of the T lines below contains the name of the team (a string of at most 10 letter and digits), followed by a whitespace, then the number of points that the team obtained till the moment. The end of input is indicated by T = 0.

     
    Output

    For each one of the test cases, your program should print a single line containing an integer, representing the quantity of matches that ended in a draw till the moment.

     
    Sample Input
    3 3 Brasil 3 Australia 3 Croacia 3 3 3 Brasil 5 Japao 1 Australia 1 0 0
     
    Sample Output
    0 2
     
    Source
    PKU
     
     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 
     4 int main()
     5 {
     6     int T,n,a[20],i,sign;
     7     while(scanf("%d%d",&T,&n),T!=0)
     8     {
     9         sign=0;
    10         while(T--)
    11         {
    12             scanf("%s",a);
    13             scanf("%d",&i);
    14             sign+=i;
    15         }
    16         printf("%d
    ",n*3-sign);
    17     }
    18     return 0;
    19 }
    View Code
    转载请备注:
    **************************************
    * 作者: Wurq
    * 博客: https://www.cnblogs.com/Wurq/
    * Gitee: https://gitee.com/wurq
    **************************************
  • 相关阅读:
    关于欧拉函数
    JavaWeb技术
    jQuery介绍
    Spring之事务管理
    Hibernate课堂笔记
    JSON简介
    Ajax简介
    Java代码生成图片验证码
    JAVA学习笔记——ClassLoader中getResource方法的路径参数
    JAVA OOP学习笔记——多态(polymorphism)
  • 原文地址:https://www.cnblogs.com/Wurq/p/3750272.html
Copyright © 2011-2022 走看看