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

문제

Little Dmitry and little Petr want to arrange a contest. Their little friends submitted several task proposals and now Dmitry and Petr want to select some of them for the contest. As they are just little boys, they cannot estimate quality of tasks, but they know for sure that in good contest title of the first problem starts with A, the title of the second one — with B, and so on.

Given titles of the proposed tasks, help little brothers to determine the maximal number of problems in a good contest they can arrange.

입력

The first line contains single integer n — the number of problem proposals received by the little brothers (1 ≤ n ≤ 100).

Next n lines contain titles of proposed problems, one per line. The length of each title does not exceed 30 characters. Each title starts with an uppercase letter and contains only English letters, digits and underscores.

출력

Output a single number — the maximal number of problems in a good contest. In case there is no good contest that may be arranged, output 0.

예제 입력 1

12
Arrangement_of_Contest
Ballot_Analyzing_Device
Correcting_Curiosity
Dwarf_Tower
Energy_Tycoon
Flight_Boarding_Optimization
Garage
Heavy_Chain_Clusterization
Intellectual_Property
J
Kids_in_a_Friendly_Class
Lonely_Mountain

예제 출력 1

12

예제 입력 2

3
Snow_White_and_the_7_Dwarfs
A_Problem
Another_Problem

예제 출력 2

1

예제 입력 3

2
Good_Problem
Better_Problem

예제 출력 3

0

출처

ICPC > Regionals > Northern Eurasia > North-Western Russia Regional Contest > NEERC Northern Subregional 2013 A번

  • 잘못된 데이터를 찾은 사람: doju