結果

問題 No.22 括弧の対応
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:29:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 4,880 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-20 07:16:28
合計ジャッジ時間 6,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,036 KB
testcase_01 AC 132 ms
40,976 KB
testcase_02 AC 118 ms
39,920 KB
testcase_03 AC 151 ms
41,360 KB
testcase_04 AC 145 ms
41,480 KB
testcase_05 AC 148 ms
41,112 KB
testcase_06 AC 148 ms
41,132 KB
testcase_07 AC 149 ms
41,044 KB
testcase_08 AC 149 ms
41,440 KB
testcase_09 AC 147 ms
41,432 KB
testcase_10 AC 149 ms
41,480 KB
testcase_11 AC 150 ms
41,104 KB
testcase_12 AC 149 ms
41,228 KB
testcase_13 AC 135 ms
40,344 KB
testcase_14 AC 137 ms
40,936 KB
testcase_15 AC 138 ms
40,552 KB
testcase_16 AC 149 ms
40,992 KB
testcase_17 AC 134 ms
40,888 KB
testcase_18 AC 119 ms
40,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), k = sc.nextInt(), idx = 0;
		int[] t = new int[n], st = new int[n];
		String s = sc.next();
		for(int i = 0; i < n; i++){
			if(s.charAt(i) == '('){
				st[idx] = i;
				idx++;
			} else {
				idx--;
				t[i] = st[idx];
				t[st[idx]] = i;
			}
		}
		System.out.println(t[k-1]+1);
	}
}
0