HDU 1004:Let the Balloon Rise

网友投稿 231 2022-08-30

HDU 1004:Let the Balloon Rise

Let the Balloon Rise

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 98230    Accepted Submission(s): 37599

Problem Description

Contest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges' favorite time is guessing the most popular problem. When the contest is over, they will count the balloons of each color and find the result. This year, they decide to leave this lovely job to you.

Input

Input contains multiple test cases. Each test case starts with a number N (0 < N <= 1000) -- the total number of balloons distributed. The next N lines contain one color each. The color of a balloon is a string of up to 15 lower-case letters. A test case with N = 0 terminates the input and this test case is not to be processed.

Output

For each case, print the color of balloon for the most popular problem on a single line. It is guaranteed that there is a unique solution for each test case.

Sample Input

5 green red blue red red 3 pink orange pink 0

Sample Output

red pink

Author

WU, Jiazhi

Source

​​ZJCPC2004​​

Recommend

JGShining   |   We have carefully selected several similar problems for you:   ​​1003​​​  ​​​1019​​​  ​​​1013​​​  ​​​1012​​​  ​​​1020​​

你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

#include#include#includeusing namespace std;int main(){ int i,a,max[1005],ma=0,jj=0; string s[1005]; while(cin>>a&&a) { ma=0,jj=0; memset(max,0,sizeof(max)); for(i=0; i>s[i]; for(int k=0; k

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:计算机学院大学生程序设计竞赛(2015’11)1007 油菜花王国
下一篇:HDU 1005:Number Sequence
相关文章

 发表评论

暂时没有评论,来抢沙发吧~