COCI '16 Contest 3 #1 Imena

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 1.0s
Memory limit: 32M

Problem type

Little Mirko likes to type and often gets bored during class, which is why his teacher assigned him a task.

Mirko must retype a book that contains N space-separated sentences. In this book, a sentence is an array of one or more space-separated words, where only the last word's character is a punctuation mark (., ? or !). The rest of the words do not contain punctuation marks.

Words are arrays of characters, either lowercase or uppercase letters of the English alphabet, or digits or, exceptionally, a punctuation mark at the end of the last word in the sentence.

Although he likes typing sentences, Mirko doesn't like typing names. A name is a word that starts with an uppercase letter of the English alphabet, whereas the rest of the characters are lowercase letters of the English alphabet, except the last character, which can be the punctuation mark. Before he decides to retype the whole thing, Mirko wants to know how many names there are in each sentence of the book. Write a programme to help him!

Input Specification

The first line of input contains the integer N (1 \leq N \leq 5), the number from the task.

The second line contains N sentences from the book. The total number of characters in the book will not exceed 1\,000.

Output Specification

You must output N lines. The i^\text{th} line contains the number of names in the i^\text{th} sentence.

Scoring

In test cases worth 40 points total, it will hold N = 1.

Sample Input 1

1
Spavas li Mirno del Potro Juan martine?

Sample Output 1

4

Sample Input 2

2
An4 voli Milovana. Ana nabra par Banana.

Sample Output 2

1
2

Explanation for Sample Output 2

The word An4 starts with an uppercase letter, but contains a digit and therefore can't be a name.


Comments

There are no comments at the moment.