시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB51343167.391%

문제

Little Vasya is playing a new computer game — turn-based strategy “Energy Tycoon”.

The rules of the game are quite simple:

  • The board contains n slots arranged in a line.
  • There are power plants, one power plant occupies one or two consecutive slots, and produces one unit of energy.
  • Each turn the game allows you to build one new power plant, you can put it on the board if you wish. If there is no place for the new power plant, you can remove some older power plants.
  • After each turn, the computer counts the amount of energy produced by the power plants on the board and adds it to the total score.

Vasya already knows the types of power plant he will be able to build each turn. Now he wants to know, what the maximum possible score he can get is. Can you help him?

입력

The first line of the input contains one integer n (1 ≤ n ≤ 100 000) — the number of slots on the board. The second line contains the string s. The i-th character of the string is 1 if you can build one-slot power plant at the i-th turn and the character is 2 if you can build two-slot power plant at the i-th turn. The number of turns does not exceed 100 000.

출력

The output should contain a single integer — the maximal score that can be achieved.

예제 입력 1

3
21121

예제 출력 1

10

예제 입력 2

2
12

예제 출력 2

2

예제 입력 3

2
211

예제 출력 3

4