結果

問題 No.22 括弧の対応
ユーザー shinwisteriashinwisteria
提出日時 2019-01-21 21:40:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 3,947 ms
コンパイル使用メモリ 75,488 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-07-20 07:39:14
合計ジャッジ時間 8,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,128 KB
testcase_01 AC 142 ms
41,392 KB
testcase_02 AC 139 ms
41,164 KB
testcase_03 AC 180 ms
41,700 KB
testcase_04 AC 179 ms
41,408 KB
testcase_05 AC 184 ms
41,272 KB
testcase_06 AC 187 ms
41,148 KB
testcase_07 AC 183 ms
41,160 KB
testcase_08 AC 182 ms
41,412 KB
testcase_09 AC 186 ms
41,492 KB
testcase_10 AC 188 ms
41,312 KB
testcase_11 AC 159 ms
41,284 KB
testcase_12 AC 180 ms
41,332 KB
testcase_13 AC 206 ms
41,420 KB
testcase_14 AC 154 ms
41,272 KB
testcase_15 AC 180 ms
41,412 KB
testcase_16 AC 183 ms
41,444 KB
testcase_17 AC 144 ms
41,340 KB
testcase_18 AC 144 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Stack;
public class No22 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , K = s.nextInt();
		s.nextLine();
		String St = s.nextLine();
		s.close();
		Stack<Integer> stack = new Stack<>();
		for(int i = 0;i < N;i++){
			if(St.charAt(i) == '('){
				stack.push(i);
			}else{
				if(i + 1 == K){
					System.out.println(stack.pop() + 1);
					break;
				}else if(stack.peek() + 1 == K){
					System.out.println(i + 1);
					break;
				}else{
					stack.pop();
				}
			}
		}

	}

}
0