結果

問題 No.22 括弧の対応
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-11 22:51:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-20 07:24:00
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,268 KB
testcase_01 AC 111 ms
41,520 KB
testcase_02 AC 101 ms
39,892 KB
testcase_03 AC 130 ms
41,256 KB
testcase_04 AC 130 ms
41,096 KB
testcase_05 AC 126 ms
41,256 KB
testcase_06 AC 117 ms
40,328 KB
testcase_07 AC 137 ms
41,560 KB
testcase_08 AC 127 ms
41,308 KB
testcase_09 AC 134 ms
41,072 KB
testcase_10 AC 117 ms
40,308 KB
testcase_11 AC 132 ms
41,424 KB
testcase_12 AC 123 ms
41,600 KB
testcase_13 AC 134 ms
41,292 KB
testcase_14 AC 122 ms
41,432 KB
testcase_15 AC 140 ms
41,800 KB
testcase_16 AC 120 ms
40,392 KB
testcase_17 AC 104 ms
40,348 KB
testcase_18 AC 99 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
    int ans = 0;
    if(s.charAt(K - 1) == '(') {
      int p = 1;
      for(int i = K; i < N; i++) {
        if(s.charAt(i) == '(') {
          p++;
        } else {
          p--;
        }
        if(p == 0) {
          ans = i + 1;
          break;
        }
      }
    } else {
      int p = -1;
      for(int i = K - 2; i >= 0; i--) {
        if(s.charAt(i) == '(') {
          p++;
        } else {
          p--;
        }
        if(p == 0) {
          ans = i + 1;
          break;
        }
      }
    }
    System.out.println(ans);
  }
}
0