結果

問題 No.22 括弧の対応
ユーザー tsunabittsunabit
提出日時 2018-08-05 04:00:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 42,352 KB
最終ジャッジ日時 2024-07-20 07:33:51
合計ジャッジ時間 6,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,320 KB
testcase_01 AC 121 ms
41,128 KB
testcase_02 AC 121 ms
41,156 KB
testcase_03 AC 155 ms
42,292 KB
testcase_04 AC 141 ms
41,580 KB
testcase_05 AC 142 ms
41,536 KB
testcase_06 AC 147 ms
41,956 KB
testcase_07 AC 162 ms
41,868 KB
testcase_08 AC 141 ms
41,300 KB
testcase_09 AC 151 ms
41,676 KB
testcase_10 AC 150 ms
41,772 KB
testcase_11 AC 146 ms
41,736 KB
testcase_12 AC 150 ms
41,512 KB
testcase_13 AC 152 ms
41,628 KB
testcase_14 AC 149 ms
41,528 KB
testcase_15 AC 157 ms
42,192 KB
testcase_16 AC 156 ms
42,352 KB
testcase_17 AC 113 ms
41,500 KB
testcase_18 AC 108 ms
40,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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