結果

問題 No.22 括弧の対応
ユーザー omc-testomc-test
提出日時 2016-08-05 17:13:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 720 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 75,472 KB
実行使用メモリ 37,372 KB
最終ジャッジ日時 2024-07-20 07:15:04
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,860 KB
testcase_01 AC 52 ms
36,724 KB
testcase_02 AC 53 ms
36,572 KB
testcase_03 AC 61 ms
37,160 KB
testcase_04 AC 56 ms
36,676 KB
testcase_05 AC 56 ms
37,120 KB
testcase_06 AC 57 ms
37,176 KB
testcase_07 AC 57 ms
36,952 KB
testcase_08 AC 56 ms
37,228 KB
testcase_09 AC 56 ms
36,940 KB
testcase_10 AC 58 ms
37,100 KB
testcase_11 AC 56 ms
36,908 KB
testcase_12 AC 57 ms
37,108 KB
testcase_13 AC 58 ms
37,104 KB
testcase_14 AC 55 ms
37,164 KB
testcase_15 AC 61 ms
37,372 KB
testcase_16 AC 60 ms
36,832 KB
testcase_17 AC 53 ms
36,856 KB
testcase_18 AC 52 ms
37,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
public class No0022 {
	public static void main(String[] args) {
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			String str[] = br.readLine().split(" ");
			int n = Integer.parseInt(str[0]);
			int k = Integer.parseInt(str[1]);
			String s = br.readLine();
			int[] ans = new int[n];
			Stack<Integer> st = new Stack<Integer>();
			for(int i=0; i<n; i++){
				if(s.charAt(i)=='('){
					st.add(i+1);
				}else{
					int t = st.pop();
					ans[i]=t;
					ans[t-1]=i+1;				}
			}
			System.out.println(ans[k-1]);
		}catch(IOException e){
			e.printStackTrace();
		}
	}
}
0