結果

問題 No.22 括弧の対応
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 19:18:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 1,847 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-08 02:44:29
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,260 KB
testcase_01 AC 117 ms
40,840 KB
testcase_02 AC 105 ms
39,720 KB
testcase_03 AC 137 ms
42,372 KB
testcase_04 AC 133 ms
41,460 KB
testcase_05 AC 137 ms
41,704 KB
testcase_06 AC 133 ms
41,928 KB
testcase_07 AC 130 ms
41,228 KB
testcase_08 AC 132 ms
41,912 KB
testcase_09 AC 129 ms
41,528 KB
testcase_10 AC 143 ms
42,224 KB
testcase_11 AC 144 ms
41,516 KB
testcase_12 AC 145 ms
41,948 KB
testcase_13 AC 137 ms
42,212 KB
testcase_14 AC 118 ms
41,412 KB
testcase_15 AC 147 ms
41,572 KB
testcase_16 AC 131 ms
42,304 KB
testcase_17 WA -
testcase_18 AC 107 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int k = sc.nextInt();
		String s = sc.next();
		
		//解説にあったimos法を使ってみる
		//配列に深さを代入
		int[] ar = new int[n];
		int depth = 1;
		int c1 = 0;
		ar[0] = depth;
		for (int i=1; i<n; i++) {
			String s1 = s.substring(i-1,i);
			String s2 = s.substring(i,i+1);
			if (s1.equals("(") && s2.equals("(")) {
				depth++;
				ar[i] = depth;
			}
			else if (s1.equals(")") && s2.equals(")")) {
				depth--;
				ar[i] = depth;
			}
			else {
				ar[i] = depth;
			}
			if (i+1 == k) {c1 = depth;}
		}
		
		
		if (s.substring(k-1,k).equals("(")) {
			for (int i=k-1; i<s.length(); i++) {
				if (ar[i]==c1 && i+1!=k) {System.out.println(i+1); break;}
			}
		}
		else {
			for (int i=k-1; i>=0; i--) {
				if (ar[i]==c1 && i+1!=k) {System.out.println(i+1); break;}
			}
		}
	} 
}
0