結果

問題 No.22 括弧の対応
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-22 16:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 879 bytes
コンパイル時間 3,940 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-07-20 07:13:50
合計ジャッジ時間 8,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,060 KB
testcase_01 AC 146 ms
53,852 KB
testcase_02 AC 134 ms
52,860 KB
testcase_03 AC 171 ms
54,220 KB
testcase_04 AC 176 ms
53,764 KB
testcase_05 AC 172 ms
54,088 KB
testcase_06 AC 161 ms
54,012 KB
testcase_07 AC 164 ms
54,036 KB
testcase_08 AC 176 ms
53,796 KB
testcase_09 AC 180 ms
53,896 KB
testcase_10 AC 184 ms
54,412 KB
testcase_11 AC 159 ms
54,232 KB
testcase_12 AC 206 ms
54,040 KB
testcase_13 AC 188 ms
54,280 KB
testcase_14 AC 164 ms
54,324 KB
testcase_15 AC 189 ms
54,168 KB
testcase_16 AC 174 ms
54,020 KB
testcase_17 AC 146 ms
54,192 KB
testcase_18 AC 150 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No22 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		sc.nextLine();
		String S = sc.nextLine();
		sc.close();
		int c = 1;
		int K2 = K - 1;
		String[] str = new String[N];
		for (int i = 0; i < N; i++) {
			str[i] = S.substring(i, i + 1);
		}
		if (str[K2].equals("(")) {
			while (true) {
				if (c == 0) {
					System.out.println(K2 + 1);
					break;
				}else if (str[K2 + 1].equals("(")) {
				c++;
				K2++;
			} else if (str[K2 + 1].equals(")")) {
				c--;
				K2++;
			}
			}
		}else if(str[K2].equals(")")){
			while(true){
				if(c == 0){
					System.out.println(K2 + 1);
					break;
				}else if(str[K2 - 1].equals(")")){
					c++;
					K2--;
				}else if(str[K2 - 1].equals("(")){
					c--;
					K2--;
				}
			}
		}
	}
}
0