結果

問題 No.22 括弧の対応
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 20:27:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 3,486 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-07-20 07:29:39
合計ジャッジ時間 7,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,448 KB
testcase_01 AC 131 ms
41,352 KB
testcase_02 AC 134 ms
41,236 KB
testcase_03 AC 180 ms
42,424 KB
testcase_04 AC 167 ms
41,884 KB
testcase_05 AC 163 ms
41,400 KB
testcase_06 AC 171 ms
41,896 KB
testcase_07 AC 172 ms
41,748 KB
testcase_08 AC 171 ms
41,788 KB
testcase_09 AC 170 ms
41,484 KB
testcase_10 AC 171 ms
41,600 KB
testcase_11 AC 169 ms
41,328 KB
testcase_12 AC 171 ms
41,864 KB
testcase_13 AC 175 ms
42,100 KB
testcase_14 AC 154 ms
41,392 KB
testcase_15 AC 179 ms
42,304 KB
testcase_16 AC 175 ms
42,184 KB
testcase_17 AC 115 ms
40,184 KB
testcase_18 AC 133 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		String S = sc.next();
		String str[] = S.split("");
		int count = 0;
		int i = K - 1;
		while(true) {
			if(str[i].equals("(")){
				count++;
			}else {
				count--;
			}
			
			if(count == 0) {
				break;
			}
			
			if(str[K - 1].equals("(")) {
				i++;
			}else {
				i--;
			}
		}
		
		System.out.println(i + 1);
	}
}
0