結果

問題 No.22 括弧の対応
ユーザー suiginginsuigingin
提出日時 2015-07-07 02:00:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 4,699 ms
コンパイル使用メモリ 75,820 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-07-20 07:03:04
合計ジャッジ時間 7,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
41,776 KB
testcase_01 AC 158 ms
41,588 KB
testcase_02 AC 157 ms
41,244 KB
testcase_03 AC 178 ms
41,132 KB
testcase_04 AC 173 ms
41,280 KB
testcase_05 AC 177 ms
41,380 KB
testcase_06 AC 164 ms
41,376 KB
testcase_07 AC 155 ms
41,228 KB
testcase_08 AC 167 ms
41,504 KB
testcase_09 AC 161 ms
41,824 KB
testcase_10 AC 155 ms
41,476 KB
testcase_11 AC 155 ms
41,904 KB
testcase_12 AC 153 ms
41,308 KB
testcase_13 AC 157 ms
41,220 KB
testcase_14 AC 147 ms
41,132 KB
testcase_15 AC 161 ms
41,272 KB
testcase_16 AC 165 ms
41,904 KB
testcase_17 AC 144 ms
41,648 KB
testcase_18 AC 158 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;

public class No_022 {
	Scanner sc = new Scanner(System.in);

	void run() {
		int N = sc.nextInt();
		int K = sc.nextInt();
		String s = sc.next();
		Stack<Integer> stack = new Stack<>();
		for (int i = 0; i < N; i++) {
			if (s.charAt(i) == '(') stack.add(i + 1);
			else {
				int num = stack.pop();
				if ((i + 1) == K) System.out.println(num);
				if (num == K) System.out.println(i + 1);
			}
		}
	}

	public static void main(String[] args) {
		new No_022().run();
	}
}
0