CF837A.Text Volume
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a text of single-space separated words, consisting of small and capital Latin letters.
Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the text.
Calculate the volume of the given text.
输入格式
The first line contains one integer number n ( 1<=n<=200 ) — length of the text.
The second line contains text of single-space separated words s1,s2,...,si , consisting only of small and capital Latin letters.
输出格式
Print one integer number — volume of text.
输入输出样例
输入#1
7 NonZERO
输出#1
5
输入#2
24 this is zero answer text
输出#2
0
输入#3
24 Harbour Space University
输出#3
1
说明/提示
In the first example there is only one word, there are 5 capital letters in it.
In the second example all of the words contain 0 capital letters.