結果

問題 No.22 括弧の対応
ユーザー UEUEUE66UEUEUE66
提出日時 2019-06-15 05:02:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-20 07:43:15
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,096 KB
testcase_01 AC 120 ms
41,208 KB
testcase_02 AC 121 ms
41,248 KB
testcase_03 AC 119 ms
40,248 KB
testcase_04 AC 133 ms
41,204 KB
testcase_05 AC 124 ms
41,500 KB
testcase_06 AC 117 ms
40,388 KB
testcase_07 AC 141 ms
41,036 KB
testcase_08 AC 136 ms
41,048 KB
testcase_09 AC 133 ms
41,444 KB
testcase_10 AC 122 ms
41,256 KB
testcase_11 AC 142 ms
41,236 KB
testcase_12 AC 135 ms
41,140 KB
testcase_13 AC 127 ms
41,232 KB
testcase_14 AC 122 ms
41,372 KB
testcase_15 AC 132 ms
41,420 KB
testcase_16 AC 140 ms
41,276 KB
testcase_17 AC 115 ms
41,120 KB
testcase_18 AC 118 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        String s = sc.next();
        sc.close();

        int count = 0;
        while (true) {
            if (s.charAt(k-1) == '(') count++;
            else count--;

            if (count > 0) k++;
            else if (count < 0) k--;
            else break;
        }

        System.out.println(k);
    }
}
0