CF1285A.Mezo Playing Zoma

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Today, Mezo is playing a game. Zoma, a character in that game, is initially at position x=0x = 0 . Mezo starts sending nn commands to Zoma. There are two possible commands:

  • 'L' (Left) sets the position x:=x1x: =x - 1 ;
  • 'R' (Right) sets the position x:=x+1x: =x + 1 .

Unfortunately, Mezo's controller malfunctions sometimes. Some commands are sent successfully and some are ignored. If the command is ignored then the position xx doesn't change and Mezo simply proceeds to the next command.

For example, if Mezo sends commands "LRLR", then here are some possible outcomes (underlined commands are sent successfully):

  • "LRLR" — Zoma moves to the left, to the right, to the left again and to the right for the final time, ending up at position 00 ;
  • "LRLR" — Zoma recieves no commands, doesn't move at all and ends up at position 00 as well;
  • "LRLR" — Zoma moves to the left, then to the left again and ends up in position 2-2 .

Mezo doesn't know which commands will be sent successfully beforehand. Thus, he wants to know how many different positions may Zoma end up at.

输入格式

The first line contains nn (1n105)(1 \le n \le 10^5) — the number of commands Mezo sends.

The second line contains a string ss of nn commands, each either 'L' (Left) or 'R' (Right).

输出格式

Print one integer — the number of different positions Zoma may end up at.

输入输出样例

  • 输入#1

    4
    LRLR

    输出#1

    5

说明/提示

In the example, Zoma may end up anywhere between 2-2 and 22 .

首页