B - Plurality Voting Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 88

注意

この問題に対する言及は、2020年5月2日 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。

試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。

問題文

ある国で選挙が行われました。候補者は a, b, c の 33 名です。

投票されたすべての票を表す文字列 SS が与えられます。SS は英小文字 a, b, c からなり、SSii 文字目は ii 番目の投票者が投票した候補者を表します。最多得票を得た候補者は誰か求めてください。

なお、最多得票を得た人物はちょうど 1 名であることが保証されています。

制約

  • 1S10001 \leq |S| \leq 1000
  • SSa, b, c からなる文字列である
  • 最多得票を得た人物はちょうど 1 名

入力

入力は以下の形式で標準入力から与えられる。

SS

出力

最多得票を得た候補者を表す英小文字を出力せよ。


入力例 1Copy

Copy
abbc

出力例 1Copy

Copy
b

候補者 a が 1 票、b が 2 票、c が 1 票を得ました。最多得票者は b です。


入力例 2Copy

Copy
cacca

出力例 2Copy

Copy
c

候補者 b は 1 票も得られませんでした。


入力例 3Copy

Copy
b

出力例 3Copy

Copy
b

投票を行ったのは 1 人だけで、その人は b に投票したため、最多得票者は b です。


入力例 4Copy

Copy
babababacaca

出力例 4Copy

Copy
a

Score : 88 points

Warning

Do not make any mention of this problem until May 2, 2020, 6:00 p.m. JST. In case of violation, compensation may be demanded.

After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).

Problem Statement

A country held an election. There were three candidates: a, b, and c.

Given is a string SS representing all the votes cast. SS consists of the lowercase English letters a, b, and c, and the ii-th character of SS represents the candidate the ii-th voter voted for. Find the candidate who received the most votes. It is guaranteed that there was exactly one candidate who received the most votes.

Constraints

  • 1S10001 \leq |S| \leq 1000
  • SS consists of a, b, and c.
  • There was exactly one candidate who received the most votes.

Input

Input is given from Standard Input in the following format:

SS

Output

Print a lowercase English letter representing the candidate with the most votes.


Sample Input 1Copy

Copy
abbc

Sample Output 1Copy

Copy
b

The candidates a, b, and c received 11, 22, and 11 vote(s), respectively. Thus, b received the most votes.


Sample Input 2Copy

Copy
cacca

Sample Output 2Copy

Copy
c

The candidate b received no votes.


Sample Input 3Copy

Copy
b

Sample Output 3Copy

Copy
b

There was only one voter, and that person voted for b. Thus, b received the most votes.


Sample Input 4Copy

Copy
babababacaca

Sample Output 4Copy

Copy
a


2025-04-03 (Thu)
09:24:50 +00:00