import java.util.HashMap; import java.util.Scanner; public class Main { private static HashMap<String, Integer> map = new HashMap<>(); public static void main(String[] args) { map.put("()", 1); Scanner in = new Scanner(System.in); String string = in.nextLine(); System.out.print(count(string)); in.close(); } private static int count(String s) { if (s.equals("")) { return 0; } int count = 0; if (map.containsKey(s)) { return map.get(s); } for (int i = 0; i < s.length(); i++) { if (s.charAt(i) == ')') { String temp = s.substring(1, i) + s.substring(i + 1, s.length()); if (temp.startsWith("(") && temp.endsWith(")")) { count += count(temp); } } } map.put(s, count); return count; } }
点赞 评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
Natrium_:这时间我以为飞机票
点赞 评论 收藏
分享
牛客网
牛客企业服务