Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or the number of characters.

In this problem you should implement the similar functionality.

You are given a string which only consists of:

  • uppercase and lowercase English letters,
  • underscore symbols (they are used as separators),
  • parentheses (both opening and closing).

It is guaranteed that each opening parenthesis has a succeeding closing parenthesis. Similarly, each closing parentheses has a preceding opening parentheses matching it. For each pair of matching parentheses there are no other parenthesis between them. In other words, each parenthesis in the string belongs to a matching "opening-closing" pair, and such pairs can't be nested.

For example, the following string is valid: "_Hello_Vasya(and_Petya)__bye_(and_OK)".

Word is a maximal sequence of consecutive letters, i.e. such sequence that the first character to the left and the first character to the right of it is an underscore, a parenthesis, or it just does not exist. For example, the string above consists of seven words: "Hello", "Vasya", "and", "Petya", "bye", "and" and "OK". Write a program that finds:

  • the length of the longest word outside the parentheses (print 0, if there is no word outside the parentheses),
  • the number of words inside the parentheses (print 0, if there is no word inside the parentheses).

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 255) — the length of the given string. The second line contains the string consisting of only lowercase and uppercase English letters, parentheses and underscore symbols.

Output

Print two space-separated integers:

  • the length of the longest word outside the parentheses (print 0, if there is no word outside the parentheses),
  • the number of words inside the parentheses (print 0, if there is no word inside the parentheses).

Example

Input
37
_Hello_Vasya(and_Petya)__bye_(and_OK)
Output
5 4
Input
37
_a_(_b___c)__de_f(g_)__h__i(j_k_l)m__
Output
2 6
Input
27
(LoooonG)__shOrt__(LoooonG)
Output
5 2
Input
5
(___)
Output
0 0

Note

In the first sample, the words "Hello", "Vasya" and "bye" are outside any of the parentheses, and the words "and", "Petya", "and" and "OK" are inside. Note, that the word "and" is given twice and you should count it twice in the answer.

 
给你一个长度为n的字符串,求出括号里面单词的数量和括号外面最长单词的长度 
即便是暴力模拟 还是很需要掌握技巧的
 
 #include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
#include<cctype>
using namespace std; int main() {
int n;
char a[];
while(scanf("%d%s",&n,a)!=EOF){
int sum=,maxn=,len=,flag=;
for (int i= ;i<n ;i++){
if (a[i]=='(') flag=;
if (a[i]==')') flag=;
if (isalpha(a[i])) len++;
else len=;
if (flag==) maxn=max(maxn,len);
else if (len==) sum++;
}
printf("%d %d\n",maxn,sum);
}
return ;
}
 

最新文章

  1. ASP.NET 验证码控件
  2. Sybase数据库,普通表修改分区表步骤
  3. Chrome-Console( Command Line API Reference)
  4. java设计模式(六)--观察者模式
  5. Jsonp类
  6. MySQL执行计划显示与执行过程不符合一例
  7. (转载)delphi checklistbox用法
  8. 百度网盘免费扩容 免费扩容到2048G
  9. 《Linux命令行与shell脚本编程大全》第十六章 控制脚本
  10. 【游戏开发】在Lua中实现面向对象特性——模拟类、继承、多态
  11. 如何在Jupyter里以不同的运行模式使用Pyspark
  12. 实验三 CC2530平台上CC2530平台上定时器组件的
  13. thinkphp5.1 判断是不是post提交
  14. sql server中的charindex函数用法解析(在一段字符中搜索字符或者字符串-----返回expression1在expression2出现的位置;反之,返回0)
  15. MariaDB:登陆报错:mysqladmin: connect to server at 'localhost' failed
  16. 腾讯云Linux VPS新硬盘分区与挂载教程(面板重装不丢失数据)
  17. Git &amp; GitHub 的安装配置
  18. [codeup] 1943 进制转换
  19. highchart本地化导出图片
  20. python strip()函数 os.popen()

热门文章

  1. Java设计模式——策略模式
  2. Dapper入门教程(二)——执行非查询语句
  3. Netty(一):入门篇
  4. 10位时间戳转为C#格式时间
  5. 网络编程基础+UDP的实现
  6. PHP 变量的实现原理
  7. IDA学习笔记 函数调用约定
  8. Django开发基础----创建项目/应用
  9. JDBC数据库操作
  10. Opencv 3.3.0 常用函数