結果

問題 No.22 括弧の対応
ユーザー mustonmuston
提出日時 2016-05-11 10:30:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 78,100 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-20 07:12:52
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,832 KB
testcase_01 AC 138 ms
53,872 KB
testcase_02 AC 140 ms
53,908 KB
testcase_03 AC 153 ms
53,660 KB
testcase_04 AC 151 ms
53,876 KB
testcase_05 AC 152 ms
53,912 KB
testcase_06 AC 150 ms
53,820 KB
testcase_07 AC 160 ms
54,096 KB
testcase_08 AC 160 ms
53,948 KB
testcase_09 AC 152 ms
53,924 KB
testcase_10 AC 152 ms
54,112 KB
testcase_11 AC 153 ms
53,864 KB
testcase_12 AC 154 ms
53,864 KB
testcase_13 AC 152 ms
53,876 KB
testcase_14 AC 147 ms
54,096 KB
testcase_15 AC 156 ms
54,208 KB
testcase_16 AC 153 ms
53,992 KB
testcase_17 AC 137 ms
53,996 KB
testcase_18 AC 135 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Aaf {
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    int N = scan.nextInt();
    int K = scan.nextInt()-1;
    int ans = 0 , j = 0;
    char [] S = scan.next().toCharArray();
    for(int i=0; i<=N; i++){
      if(S[K]=='('){
        if(S[K+i]=='('){
          j=j+1;
          }else{
          j=j-1;
        }
      }else{
        if(S[K-i]=='('){
          j=j+1;
          }else{
          j=j-1;
        }
      }
      if(j==0){
        ans=i;
        break;
      }
    }
    if(S[K]=='('){
      ans=K+ans+1;
      }else{
      ans=K-ans+1;
    }
    System.out.println(ans);
  }
}
0