結果

問題 No.22 括弧の対応
ユーザー yagi2yagi2
提出日時 2017-04-26 12:16:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 693 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 76,808 KB
実行使用メモリ 43,384 KB
最終ジャッジ日時 2024-07-20 07:23:14
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,072 KB
testcase_01 AC 113 ms
41,372 KB
testcase_02 AC 111 ms
41,224 KB
testcase_03 AC 162 ms
43,384 KB
testcase_04 AC 144 ms
41,872 KB
testcase_05 AC 154 ms
42,044 KB
testcase_06 AC 153 ms
42,680 KB
testcase_07 AC 158 ms
42,812 KB
testcase_08 AC 147 ms
42,204 KB
testcase_09 AC 147 ms
42,244 KB
testcase_10 AC 153 ms
42,760 KB
testcase_11 AC 144 ms
42,132 KB
testcase_12 AC 145 ms
42,056 KB
testcase_13 AC 154 ms
42,588 KB
testcase_14 AC 134 ms
41,408 KB
testcase_15 AC 163 ms
42,804 KB
testcase_16 AC 179 ms
43,160 KB
testcase_17 AC 124 ms
41,260 KB
testcase_18 AC 119 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No22;

import java.util.*;

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

        int N = Integer.parseInt(sc.next());
        int K = Integer.parseInt(sc.next());

        String[] S = sc.next().split("");

        Map<Integer, Integer> dp = new HashMap<>();
        Stack<Integer> stack = new Stack<>();

        for (int i = 0; i < N; i++) {
            if (S[i].equals("(")) {
                stack.push(i);
            } else {
                int n = stack.pop();
                dp.put(i, n);
                dp.put(n, i);
            }
        }

        System.out.println(dp.get(K - 1) + 1);
    }
}
0