結果

問題 No.22 括弧の対応
ユーザー kano_townkano_town
提出日時 2014-11-19 21:41:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-07-20 06:55:22
合計ジャッジ時間 7,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,228 KB
testcase_01 AC 135 ms
41,404 KB
testcase_02 AC 136 ms
41,400 KB
testcase_03 AC 151 ms
41,104 KB
testcase_04 AC 147 ms
41,196 KB
testcase_05 AC 151 ms
41,296 KB
testcase_06 AC 152 ms
41,528 KB
testcase_07 AC 151 ms
41,272 KB
testcase_08 AC 149 ms
41,748 KB
testcase_09 AC 149 ms
41,292 KB
testcase_10 AC 153 ms
41,400 KB
testcase_11 AC 150 ms
41,396 KB
testcase_12 AC 156 ms
41,356 KB
testcase_13 AC 161 ms
41,244 KB
testcase_14 AC 141 ms
41,104 KB
testcase_15 AC 153 ms
41,304 KB
testcase_16 AC 153 ms
41,180 KB
testcase_17 AC 138 ms
41,560 KB
testcase_18 AC 135 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder22 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt() - 1;
		String s = sc.next();

		int i = 0, count = 0;
		if (s.charAt(k) == '(') {
			for (i = k + 1; i < s.length(); i++) {
				if (s.charAt(i) == '(') {
					count++;
				} else if (s.charAt(i) == ')') {
					if (count == 0) break;
					count--;
				}
			}
		} else if (s.charAt(k) == ')') {
			for (i = k - 1; i >= 0; i--) {
				if (s.charAt(i) == '(') {
					if (count == 0) break;
					count++;
				} else if (s.charAt(i) == ')') {
					count--;
				}
			}
		}
		System.out.println(i + 1);
	}
}
0