結果

問題 No.22 括弧の対応
ユーザー mits58mits58
提出日時 2016-07-09 20:17:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-07-20 07:14:28
合計ジャッジ時間 6,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,716 KB
testcase_01 AC 145 ms
41,376 KB
testcase_02 AC 140 ms
41,332 KB
testcase_03 AC 164 ms
41,824 KB
testcase_04 AC 160 ms
41,576 KB
testcase_05 AC 157 ms
41,132 KB
testcase_06 AC 159 ms
41,140 KB
testcase_07 AC 172 ms
41,152 KB
testcase_08 AC 162 ms
41,716 KB
testcase_09 AC 160 ms
41,684 KB
testcase_10 AC 160 ms
41,740 KB
testcase_11 AC 160 ms
41,440 KB
testcase_12 AC 169 ms
41,712 KB
testcase_13 AC 165 ms
41,844 KB
testcase_14 AC 147 ms
41,016 KB
testcase_15 AC 169 ms
41,420 KB
testcase_16 AC 170 ms
41,292 KB
testcase_17 AC 143 ms
41,196 KB
testcase_18 AC 140 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int k=sc.nextInt();
			String s=sc.next();
			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]);
		}
	}
}
0