結果

問題 No.22 括弧の対応
ユーザー koukonkokoukonko
提出日時 2015-12-07 13:08:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 1,076 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 76,760 KB
実行使用メモリ 38,984 KB
最終ジャッジ日時 2024-07-20 07:05:19
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,904 KB
testcase_01 AC 48 ms
37,052 KB
testcase_02 AC 46 ms
36,672 KB
testcase_03 AC 92 ms
38,540 KB
testcase_04 AC 77 ms
38,596 KB
testcase_05 AC 80 ms
38,072 KB
testcase_06 AC 88 ms
38,320 KB
testcase_07 AC 78 ms
38,640 KB
testcase_08 AC 61 ms
37,692 KB
testcase_09 AC 98 ms
38,584 KB
testcase_10 AC 63 ms
37,476 KB
testcase_11 AC 82 ms
38,328 KB
testcase_12 AC 101 ms
38,984 KB
testcase_13 AC 113 ms
38,480 KB
testcase_14 AC 59 ms
37,052 KB
testcase_15 AC 93 ms
38,404 KB
testcase_16 AC 89 ms
38,500 KB
testcase_17 AC 45 ms
36,888 KB
testcase_18 AC 44 ms
37,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String[] str = buff.readLine().split(" ");
			int N = Integer.parseInt(str[0]);
			int K = Integer.parseInt(str[1]) - 1;
			String s = buff.readLine();
			StringBuilder line = new StringBuilder(s);

			boolean flag = true;
			int ans = -1;
			for (int i = 0; i < N && flag; ++i) {
				if (line.charAt(i) == '(') {
					for (int j = i + 1; j < N; ++j) {
						if (line.charAt(j) == '(') {
							break;
						}
						if (line.charAt(j) == ')') {

							if (i == K) {
								ans = j;
								flag = false;
							} else if (j == K) {
								ans = i;
								flag = false;
							} else {
								line.setCharAt(i, ' ');
								line.setCharAt(j, ' ');
								i = -1;
							}
							break;
						}

					}

				}
			}
			System.out.println(ans + 1);

		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0