Majority

AtCoder
IDabc287_a
Time2000ms
Memory256MB
Difficulty
There are $N$ people. Each of them agrees or disagrees with a proposal. Here, $N$ is an odd number. The $i$\-th $(i = 1, 2, \dots, N)$ person's opinion is represented by a string $S_i$: the person agrees if $S_i = $ `For` and disagrees if $S_i = $ `Against`. Determine whether the majority agrees with the proposal. ## Constraints * $N$ is an **odd number** between $1$ and $99$, inclusive. * $S_i = $ `For` or $S_i = $ `Against`, for all $i = 1, 2, \dots, N$. ## Input The input is given from Standard Input in the following format: $N$ $S_1$ $S_2$ $\vdots$ $S_N$ [samples]
Samples
Input #1
3
For
Against
For
Output #1
Yes

The proposal is supported by two people, which is the majority, so `Yes` should be printed.
Input #2
5
Against
Against
For
Against
For
Output #2
No

The proposal is supported by two people, which is not the majority, so `No` should be printed.
Input #3
1
For
Output #3
Yes
API Response (JSON)
{
  "problem": {
    "name": "Majority",
    "description": {
      "content": "There are $N$ people. Each of them agrees or disagrees with a proposal. Here, $N$ is an odd number. The $i$\\-th $(i = 1, 2, \\dots, N)$ person's opinion is represented by a string $S_i$: the person agr",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc287_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "There are $N$ people. Each of them agrees or disagrees with a proposal. Here, $N$ is an odd number.\nThe $i$\\-th $(i = 1, 2, \\dots, N)$ person's opinion is represented by a string $S_i$: the person agr...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments