結果

問題 No.22 括弧の対応
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:03:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 750 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 81,352 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-07-20 07:26:57
合計ジャッジ時間 5,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,408 KB
testcase_01 AC 119 ms
40,268 KB
testcase_02 AC 134 ms
41,176 KB
testcase_03 AC 155 ms
41,696 KB
testcase_04 AC 149 ms
41,864 KB
testcase_05 AC 152 ms
41,464 KB
testcase_06 AC 149 ms
41,480 KB
testcase_07 AC 148 ms
41,368 KB
testcase_08 AC 148 ms
41,536 KB
testcase_09 AC 149 ms
41,496 KB
testcase_10 AC 152 ms
41,740 KB
testcase_11 AC 136 ms
40,508 KB
testcase_12 AC 150 ms
41,372 KB
testcase_13 AC 151 ms
41,612 KB
testcase_14 AC 142 ms
41,500 KB
testcase_15 AC 154 ms
41,724 KB
testcase_16 AC 152 ms
41,896 KB
testcase_17 AC 136 ms
41,288 KB
testcase_18 AC 133 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int K = sc.nextInt() - 1;
		
		final char[] inputs = sc.next().toCharArray();
		
		int[] trans = new int[N];
		Arrays.fill(trans, -1);
		
		LinkedList<Integer> open_stack = new LinkedList<Integer>();
		for(int index = 0; index < N; index++){
			if(inputs[index] == '('){
				open_stack.addFirst(index);
			}else{
				final int open_index = open_stack.removeFirst();
				
				trans[open_index] = index;
				trans[index] = open_index;
			}
		}
		
		System.out.println(trans[K] + 1);
	}
}
0