結果

問題 No.22 括弧の対応
ユーザー kou6839kou6839
提出日時 2014-11-16 19:19:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-20 06:55:28
合計ジャッジ時間 4,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,188 KB
testcase_01 AC 107 ms
41,052 KB
testcase_02 AC 113 ms
41,172 KB
testcase_03 AC 132 ms
41,612 KB
testcase_04 AC 128 ms
41,396 KB
testcase_05 AC 137 ms
41,044 KB
testcase_06 AC 142 ms
41,344 KB
testcase_07 AC 133 ms
41,236 KB
testcase_08 AC 114 ms
40,452 KB
testcase_09 AC 124 ms
40,516 KB
testcase_10 AC 123 ms
40,588 KB
testcase_11 AC 136 ms
41,116 KB
testcase_12 AC 119 ms
40,456 KB
testcase_13 AC 126 ms
40,912 KB
testcase_14 AC 121 ms
41,312 KB
testcase_15 AC 138 ms
41,352 KB
testcase_16 AC 128 ms
41,212 KB
testcase_17 AC 102 ms
40,648 KB
testcase_18 AC 109 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		String s = sc.next();
		Stack<Integer> a = new Stack<Integer>();
		for(int i=0;i<n;i++){
			char rr=s.charAt(i);
			if(rr=='('){
				a.add(i+1);
			}else{
				if(i+1==m){
					System.out.println(a.pop());
					return;
				}
				if(a.pop()==m){
					System.out.println(i+1);
					return;
				}
			}
		}
	}
}
0