結果

問題 No.22 括弧の対応
ユーザー dazydazy
提出日時 2016-09-08 14:49:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 1,237 bytes
コンパイル時間 3,517 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-07-20 07:16:08
合計ジャッジ時間 6,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,292 KB
testcase_01 AC 116 ms
41,136 KB
testcase_02 AC 114 ms
41,344 KB
testcase_03 AC 131 ms
41,352 KB
testcase_04 AC 114 ms
40,352 KB
testcase_05 AC 132 ms
41,132 KB
testcase_06 AC 124 ms
41,216 KB
testcase_07 AC 119 ms
40,408 KB
testcase_08 AC 134 ms
40,848 KB
testcase_09 AC 128 ms
41,292 KB
testcase_10 AC 135 ms
41,136 KB
testcase_11 AC 134 ms
41,132 KB
testcase_12 AC 118 ms
40,416 KB
testcase_13 AC 116 ms
40,228 KB
testcase_14 AC 120 ms
41,228 KB
testcase_15 AC 128 ms
41,296 KB
testcase_16 AC 132 ms
41,468 KB
testcase_17 AC 105 ms
40,220 KB
testcase_18 AC 103 ms
40,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int K = scan.nextInt();
        if (N < 1||N > 10000||K < 1||K > N) System.exit(1);
        String S = scan.next();
        if (S.length()!=N) System.exit(1);
        Stack stackS = new Stack();
        int count = 0;
        K--;
        boolean flag;
        if (S.charAt(K)=='(') flag = true;
        else flag = false;
        if (flag) {
            while (true) {
                if (S.charAt(K) == '(') {
                    stackS.push(S.charAt(K));
                    count++;
                } else {
                    stackS.pop();
                    count--;
                    if (count==0) break;
                }
                K++;
            }
        } else {
            while (true) {
                if (S.charAt(K) == ')') {
                    stackS.push(S.charAt(K));
                    count++;
                } else {
                    stackS.pop();
                    count--;
                    if (count == 0) break;
                }
                K--;
            }
        }

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