結果

問題 No.22 括弧の対応
ユーザー GrenacheGrenache
提出日時 2015-09-22 22:56:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-07-20 07:04:25
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,044 KB
testcase_01 AC 117 ms
41,272 KB
testcase_02 AC 121 ms
41,256 KB
testcase_03 AC 130 ms
41,372 KB
testcase_04 AC 115 ms
40,120 KB
testcase_05 AC 118 ms
40,340 KB
testcase_06 AC 129 ms
41,464 KB
testcase_07 AC 135 ms
41,556 KB
testcase_08 AC 131 ms
41,276 KB
testcase_09 AC 147 ms
41,184 KB
testcase_10 AC 123 ms
40,368 KB
testcase_11 AC 132 ms
41,040 KB
testcase_12 AC 115 ms
40,212 KB
testcase_13 AC 138 ms
41,140 KB
testcase_14 AC 109 ms
40,252 KB
testcase_15 AC 120 ms
40,164 KB
testcase_16 AC 129 ms
41,404 KB
testcase_17 AC 115 ms
41,060 KB
testcase_18 AC 104 ms
39,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder22 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int k = sc.nextInt() - 1;
        char[] s = sc.next().toCharArray();
        
        if (s[k] == '(') {
        	int tmp = 0;
        	for (int i = k + 1; i < n; i++) {
        		if (s[i] == ')') {
        			if (tmp == 0) {
        				System.out.println(i + 1);
        				break;
        			} else {
        				tmp--;
        			}
        		} else {
        			tmp++;
        		}
        	}
        } else {
        	int tmp = 0;
        	for (int i = k - 1; i >= 0; i--) {
        		if (s[i] == '(') {
        			if (tmp == 0) {
        				System.out.println(i + 1);
        				break;
        			} else {
        				tmp--;
        			}
        		} else {
        			tmp++;
        		}
        	}
        }

        sc.close();
    }
}
0