#abc287a. A - Majority

A - Majority

Score : 100100 points

问题描述

NN 名人员。他们每个人对一项提议表示同意或不同意。这里,NN 是一个奇数。

iii=1,2,,Ni = 1, 2, \dots, N)个人的观点通过字符串 SiS_i 表示:如果 Si=S_i = For,则表示此人同意;如果 Si=S_i = Against,则表示此人不同意。

确定大多数人是否同意该提议。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

There are NN people. Each of them agrees or disagrees with a proposal. Here, NN is an odd number.

The ii-th (i=1,2,,N)(i = 1, 2, \dots, N) person's opinion is represented by a string SiS_i: the person agrees if Si=S_i = For and disagrees if Si=S_i = Against.

Determine whether the majority agrees with the proposal.

Constraints

  • NN is an odd number between 11 and 9999, inclusive.
  • Si=S_i = For or Si=S_i = Against, for all i=1,2,,Ni = 1, 2, \dots, N.

Input

The input is given from Standard Input in the following format:

NN

S1S_1

S2S_2

\vdots

SNS_N

Output

Print Yes if the majority of the NN people agree with the proposal; print No otherwise.

Sample Input 1

3
For
Against
For

Sample Output 1

Yes

The proposal is supported by two people, which is the majority, so Yes should be printed.

Sample Input 2

5
Against
Against
For
Against
For

Sample Output 2

No

The proposal is supported by two people, which is not the majority, so No should be printed.

Sample Input 3

1
For

Sample Output 3

Yes

update @ 2024/3/10 11:59:13