結果

問題 No.22 括弧の対応
ユーザー discoNekodiscoNeko
提出日時 2016-04-29 00:58:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 76,540 KB
実行使用メモリ 37,192 KB
最終ジャッジ日時 2024-07-20 07:12:20
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,552 KB
testcase_01 AC 48 ms
37,052 KB
testcase_02 AC 50 ms
36,916 KB
testcase_03 AC 49 ms
37,044 KB
testcase_04 AC 45 ms
36,824 KB
testcase_05 AC 47 ms
36,568 KB
testcase_06 AC 48 ms
37,104 KB
testcase_07 AC 48 ms
36,908 KB
testcase_08 AC 47 ms
37,112 KB
testcase_09 AC 47 ms
36,824 KB
testcase_10 AC 46 ms
36,568 KB
testcase_11 AC 47 ms
36,968 KB
testcase_12 AC 46 ms
37,152 KB
testcase_13 AC 46 ms
36,680 KB
testcase_14 AC 45 ms
36,696 KB
testcase_15 AC 47 ms
36,916 KB
testcase_16 AC 50 ms
36,824 KB
testcase_17 AC 47 ms
37,192 KB
testcase_18 AC 49 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		String[] str = br.readLine().split(" ");
		int n = Integer.parseInt(str[0]);
		int k = Integer.parseInt(str[1]);
		String a = br.readLine();
		int[] f = new int[n/2];
		int[] l = new int[n/2];
		int cnt = 0;
		int pos = -1;
		for(int i = 0; i < n; i++){
			char c = a.charAt(i);
			if(c=='('){
				f[cnt]=i+1;
				if(i+1==k)pos = cnt;
				cnt++;
			}else{
				cnt--;
				l[cnt]=i+1;
				if(i+1==k){
					sb.append(f[cnt]);
					System.out.println(sb);
					return;
				}
				if(pos==cnt){
					sb.append(l[cnt]);
					System.out.println(sb);
					return;
				}
			}
		}
	}
}
0