#P1428F. Fruit Sequences
Fruit Sequences
No submission language available for this problem.
Description
Zookeeper is buying a carton of fruit to feed his pet wabbit. The fruits are a sequence of apples and oranges, which is represented by a binary string of length . represents an apple and represents an orange.
Since wabbit is allergic to eating oranges, Zookeeper would like to find the longest contiguous sequence of apples. Let be the longest contiguous sequence of apples in the substring .
Help Zookeeper find , or the sum of across all substrings.
The first line contains a single integer .
The next line contains a binary string of length
Print a single integer: .
Input
The first line contains a single integer .
The next line contains a binary string of length
Output
Print a single integer: .
Samples
Note
In the first test, there are ten substrings. The list of them (we let be the substring ):
- : 0
- : 01
- : 011
- : 0110
- : 1
- : 11
- : 110
- : 1
- : 10
- : 0
The lengths of the longest contiguous sequence of ones in each of these ten substrings are respectively. Hence, the answer is .