結果

問題 No.22 括弧の対応
ユーザー tentententen
提出日時 2020-11-05 18:46:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 783 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-07-22 11:16:02
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,376 KB
testcase_01 AC 147 ms
41,276 KB
testcase_02 AC 147 ms
41,356 KB
testcase_03 AC 163 ms
41,776 KB
testcase_04 AC 162 ms
41,276 KB
testcase_05 AC 160 ms
41,028 KB
testcase_06 AC 161 ms
41,352 KB
testcase_07 AC 163 ms
41,636 KB
testcase_08 AC 162 ms
41,116 KB
testcase_09 AC 164 ms
41,372 KB
testcase_10 AC 164 ms
41,724 KB
testcase_11 AC 163 ms
41,096 KB
testcase_12 AC 162 ms
41,220 KB
testcase_13 AC 164 ms
41,352 KB
testcase_14 AC 150 ms
41,672 KB
testcase_15 AC 163 ms
41,148 KB
testcase_16 AC 167 ms
41,396 KB
testcase_17 AC 145 ms
41,012 KB
testcase_18 AC 145 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		char[] arr = sc.next().toCharArray();
		int count = 0;
		if (arr[k - 1] == '(') {
		    for (int i = k - 1; ; i++) {
		        if (arr[i] == '(') {
		            count++;
		        } else {
		            count--;
		        }
		        if (count == 0) {
		            System.out.println(i + 1);
		            return;
		        }
		    }
		} else {
		    for (int i = k - 1; ; i--) {
		        if (arr[i] == '(') {
		            count++;
		        } else {
		            count--;
		        }
		        if (count == 0) {
		            System.out.println(i + 1);
		            return;
		        }
		    }
		}
	}
}
0