結果

問題 No.22 括弧の対応
ユーザー dazydazy
提出日時 2016-09-08 14:43:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,228 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-11-15 22:17:52
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,384 KB
testcase_01 AC 128 ms
41,056 KB
testcase_02 AC 135 ms
41,452 KB
testcase_03 AC 153 ms
41,632 KB
testcase_04 AC 141 ms
41,288 KB
testcase_05 AC 126 ms
40,080 KB
testcase_06 AC 138 ms
40,896 KB
testcase_07 AC 142 ms
41,524 KB
testcase_08 AC 143 ms
41,644 KB
testcase_09 AC 143 ms
41,396 KB
testcase_10 AC 153 ms
41,548 KB
testcase_11 AC 142 ms
41,368 KB
testcase_12 AC 142 ms
41,412 KB
testcase_13 AC 145 ms
41,616 KB
testcase_14 AC 134 ms
41,452 KB
testcase_15 AC 144 ms
41,776 KB
testcase_16 AC 145 ms
41,312 KB
testcase_17 RE -
testcase_18 AC 116 ms
40,360 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() - 1;
        if (N < 1||N > 10000||K < 1||K > N) System.exit(1);
        String S = scan.next();
        if (S.length()!=N) System.exit(1);
        boolean flag;
        if (S.charAt(K)=='(') flag = true;
        else flag = false;
        Stack stackS = new Stack();
        int count = 0;
        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