結果

問題 No.22 括弧の対応
ユーザー YamaKasaYamaKasa
提出日時 2018-09-25 15:57:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 601 bytes
コンパイル時間 2,858 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-07-20 07:35:27
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,280 KB
testcase_01 AC 121 ms
41,404 KB
testcase_02 AC 117 ms
41,372 KB
testcase_03 AC 140 ms
41,556 KB
testcase_04 AC 138 ms
41,316 KB
testcase_05 AC 126 ms
40,404 KB
testcase_06 AC 146 ms
41,552 KB
testcase_07 AC 144 ms
41,136 KB
testcase_08 AC 136 ms
41,156 KB
testcase_09 AC 138 ms
41,384 KB
testcase_10 AC 135 ms
41,484 KB
testcase_11 AC 138 ms
41,508 KB
testcase_12 AC 144 ms
41,496 KB
testcase_13 AC 122 ms
40,260 KB
testcase_14 AC 104 ms
39,892 KB
testcase_15 AC 147 ms
41,112 KB
testcase_16 AC 132 ms
41,480 KB
testcase_17 AC 120 ms
41,276 KB
testcase_18 AC 115 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		String S = scan.next();

		scan.close();
		Deque<Integer> stack = new ArrayDeque<Integer>();
		K--;
		for(int i = 0; i < N; i++) {
			char c = S.charAt(i);
			if(c == '(') {
				stack.push(i);
			}else {
				int k = stack.pop();
				if(i == K) {
					System.out.println(k + 1);
					break;
				}else if(k == K) {
					System.out.println(i + 1);
				}
			}
		}
	}
}
0