結果

問題 No.22 括弧の対応
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-03-01 22:54:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-07-20 07:20:09
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,072 KB
testcase_01 AC 136 ms
41,152 KB
testcase_02 AC 134 ms
41,204 KB
testcase_03 AC 151 ms
41,340 KB
testcase_04 AC 148 ms
41,176 KB
testcase_05 AC 148 ms
41,460 KB
testcase_06 AC 150 ms
41,212 KB
testcase_07 AC 148 ms
41,212 KB
testcase_08 AC 150 ms
41,352 KB
testcase_09 AC 151 ms
41,116 KB
testcase_10 AC 150 ms
41,608 KB
testcase_11 AC 151 ms
41,228 KB
testcase_12 AC 151 ms
41,216 KB
testcase_13 AC 151 ms
41,484 KB
testcase_14 AC 137 ms
41,032 KB
testcase_15 AC 149 ms
41,516 KB
testcase_16 AC 151 ms
41,216 KB
testcase_17 AC 132 ms
41,004 KB
testcase_18 AC 134 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

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

        int mv = 1;
        k--;
        if(c[k] == ')') mv = -1;
        int cnt = 0;
        for(int i=k+mv; cnt!=1; i+=mv) {
            if(c[i] == c[k]) cnt--;
            else cnt++;
            if(cnt == 1) {
                System.out.println(i+1);
                break;
            }
        }

        in.close();
    }
}
0