結果

問題 No.22 括弧の対応
ユーザー itezpaceitezpace
提出日時 2016-08-18 12:32:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 972 bytes
コンパイル時間 2,831 ms
コンパイル使用メモリ 77,168 KB
実行使用メモリ 36,908 KB
最終ジャッジ日時 2024-07-20 07:15:32
合計ジャッジ時間 4,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
36,840 KB
testcase_01 AC 69 ms
36,908 KB
testcase_02 AC 60 ms
36,432 KB
testcase_03 AC 72 ms
36,816 KB
testcase_04 AC 60 ms
36,868 KB
testcase_05 AC 58 ms
36,880 KB
testcase_06 AC 58 ms
36,780 KB
testcase_07 AC 57 ms
36,720 KB
testcase_08 AC 56 ms
36,896 KB
testcase_09 AC 56 ms
36,832 KB
testcase_10 AC 58 ms
36,640 KB
testcase_11 AC 58 ms
36,664 KB
testcase_12 AC 57 ms
36,720 KB
testcase_13 AC 57 ms
36,756 KB
testcase_14 AC 58 ms
36,900 KB
testcase_15 AC 59 ms
36,760 KB
testcase_16 AC 59 ms
36,764 KB
testcase_17 AC 57 ms
36,720 KB
testcase_18 AC 57 ms
36,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Yuki22 {
  public static void main(String[] args) throws IOException {
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(is);
    String s = br.readLine();
    int n,k;
    String[] sa = s.split(" ");
    n = Integer.parseInt(sa[0]);
    k = Integer.parseInt(sa[1]);
    String s2 = br.readLine();
    int x;
    x=s2.length()+1;
    if(s2.charAt(k-1)=='('){
      int a;
      a=1;
      for(int i=k; i<s2.length(); ++i){
        if(s2.charAt(i)=='('){
          a++;
        } else {
          a--;
          if(a==0){
            x=i;
            break;
          }
        }
      }
    } else if(s2.charAt(k-1)==')'){
      int a;
      a=1;
      for(int i=k-2; i>=0; --i){
        if(s2.charAt(i)==')'){
          a++;
        } else {
          a--;
          if(a==0){
            x=i;
            break;
          }
        }
      }
    }
    x+=1;
    System.out.println(x);
  }
}
0