結果

問題 No.22 括弧の対応
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 13:51:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 1,398 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 80,396 KB
実行使用メモリ 39,396 KB
最終ジャッジ日時 2024-07-20 07:22:55
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,684 KB
testcase_01 AC 47 ms
37,192 KB
testcase_02 AC 47 ms
37,136 KB
testcase_03 AC 89 ms
39,396 KB
testcase_04 AC 77 ms
38,232 KB
testcase_05 AC 74 ms
37,916 KB
testcase_06 AC 88 ms
39,004 KB
testcase_07 AC 75 ms
38,964 KB
testcase_08 AC 79 ms
38,228 KB
testcase_09 AC 80 ms
38,544 KB
testcase_10 AC 76 ms
38,876 KB
testcase_11 AC 71 ms
37,660 KB
testcase_12 AC 82 ms
38,872 KB
testcase_13 AC 87 ms
38,976 KB
testcase_14 AC 51 ms
37,216 KB
testcase_15 AC 86 ms
39,096 KB
testcase_16 AC 89 ms
39,212 KB
testcase_17 AC 48 ms
36,688 KB
testcase_18 AC 49 ms
36,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;


public class Main {
    public static void main(String[] args) throws IOException {

        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

        String[] firstLine = reader.readLine().split(" ");
        int N = Integer.parseInt(firstLine[0]);
        int K = Integer.parseInt(firstLine[1]);

        String[] S = reader.readLine().split("");
        Stack<Parenthesis> stack = new Stack<>();
        for (int i = 0; i < N; i++) {

            if (S[i].equals("(")) {
                stack.add(new Parenthesis(S[i], i + 1));
            } else {
                Parenthesis parenthesis = stack.pop();
                if (i + 1 == K) {
                    System.out.println(parenthesis.index);
                    break;
                } else if (parenthesis.index == K) {
                    System.out.println(i + 1);
                    break;
                }
            }
        }
    }
}

class Parenthesis {
    String value;
    int index;

    Parenthesis(String value, int index) {
        this.value = value;
        this.index = index;
    }

    @Override
    public String toString() {
        return "Parenthesis{" +
                "value='" + value + '\'' +
                ", index=" + index +
                '}';
    }
}
0