DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9076

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12027
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:

TA的其他文章

java--study||O.o
浏览:52
java--study||O.o
浏览:56
java--study||O.o
浏览:63


参考代码:

import java.util.Scanner;

public class Main
{	static String in;
	static int index = -1;
	public static void main(String[] args)
	{	Scanner scanner = new Scanner(System.in);
		in = scanner.next();
		System.out.print(dfs());
	}
	public static int dfs()
	{	int max = 0;
		int current = 0;
		while(index < in.length() - 1)
		{	index++;
			if(in.charAt(index) == 'x')
				current++;
			else if(in.charAt(index) == '(')
				current += dfs();
			else if(in.charAt(index) == ')')
				break;
			else if(in.charAt(index) == '|')
			{	max = Math.max(current, max);
				current = 0;
			}
		}
		return Math.max(max, current);
	}
}


 

0.0分

5 人评分

  评论区

  • «
  • »