結果

問題 No.22 括弧の対応
ユーザー abcabc
提出日時 2016-10-18 13:01:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 927 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-20 07:17:50
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,036 KB
testcase_01 AC 121 ms
41,112 KB
testcase_02 AC 124 ms
41,244 KB
testcase_03 AC 135 ms
41,592 KB
testcase_04 AC 138 ms
41,500 KB
testcase_05 AC 136 ms
41,508 KB
testcase_06 AC 133 ms
41,212 KB
testcase_07 AC 135 ms
41,248 KB
testcase_08 AC 127 ms
41,428 KB
testcase_09 AC 123 ms
41,320 KB
testcase_10 AC 123 ms
40,120 KB
testcase_11 AC 119 ms
40,412 KB
testcase_12 AC 130 ms
41,308 KB
testcase_13 AC 131 ms
41,516 KB
testcase_14 AC 124 ms
41,488 KB
testcase_15 AC 133 ms
41,356 KB
testcase_16 AC 125 ms
40,772 KB
testcase_17 AC 105 ms
40,276 KB
testcase_18 AC 102 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numBrackets = sc.nextInt();
        int bracketIndexTofind = sc.nextInt();

        String s = sc.next();

        Stack<Integer> stack = new Stack<Integer>();

        for (int i = 0; i < numBrackets; i++) {

            char c = s.charAt(i);

            if (c == '(') {

                stack.add(i + 1);

            } else if (c == ')') {

                int openBracketIndex = stack.pop();

                if ((i + 1) == bracketIndexTofind) {

                    System.out.println(openBracketIndex);
                    return;

                }

                if (openBracketIndex == bracketIndexTofind) {

                    System.out.println(i + 1);
                    return;

                }

            }

        }

    }

}
0