結果

問題 No.22 括弧の対応
ユーザー shinshin
提出日時 2022-05-17 07:12:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 4,667 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 37,140 KB
最終ジャッジ日時 2024-09-15 00:41:21
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,712 KB
testcase_01 AC 51 ms
36,508 KB
testcase_02 AC 51 ms
36,784 KB
testcase_03 AC 54 ms
36,876 KB
testcase_04 AC 52 ms
36,652 KB
testcase_05 AC 52 ms
36,984 KB
testcase_06 AC 53 ms
36,760 KB
testcase_07 AC 51 ms
36,932 KB
testcase_08 AC 51 ms
36,584 KB
testcase_09 AC 52 ms
36,648 KB
testcase_10 AC 52 ms
36,576 KB
testcase_11 AC 53 ms
36,908 KB
testcase_12 AC 52 ms
36,992 KB
testcase_13 AC 53 ms
36,692 KB
testcase_14 AC 50 ms
36,560 KB
testcase_15 AC 54 ms
37,140 KB
testcase_16 AC 54 ms
37,004 KB
testcase_17 AC 50 ms
36,728 KB
testcase_18 AC 52 ms
36,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;

public class No22 {

	public static void main(String[] args) throws IOException {
		//括弧の対応
		String[] text = readStr();
		int N = Integer.parseInt(text[0].split(" ")[0]) , K = Integer.parseInt(text[0].split(" ")[1]) , r = 0;
		String S = text[1];
		Deque<Integer> dq = new ArrayDeque<>();
		
		for(int i = 0;i < N;i++) {
			if(S.charAt(i) == '(') {
				dq.push(i+1);
			}else {
				r = dq.pop();
				if(i+1 == K || r == K) {
					r = i + 1 + r - K;
					break;
				}
			}
		}
		System.out.println(r);
		

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0