結果

問題 No.22 括弧の対応
ユーザー jimanojimano
提出日時 2017-05-06 16:05:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 2,696 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 40,368 KB
最終ジャッジ日時 2024-07-20 07:23:33
合計ジャッジ時間 4,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,256 KB
testcase_01 AC 47 ms
37,024 KB
testcase_02 AC 46 ms
37,312 KB
testcase_03 AC 86 ms
40,368 KB
testcase_04 AC 87 ms
39,556 KB
testcase_05 AC 70 ms
38,704 KB
testcase_06 AC 82 ms
39,884 KB
testcase_07 AC 94 ms
40,352 KB
testcase_08 AC 80 ms
39,468 KB
testcase_09 AC 91 ms
39,200 KB
testcase_10 AC 96 ms
39,836 KB
testcase_11 AC 81 ms
38,280 KB
testcase_12 AC 79 ms
39,684 KB
testcase_13 AC 93 ms
40,092 KB
testcase_14 AC 52 ms
37,376 KB
testcase_15 AC 86 ms
40,128 KB
testcase_16 AC 94 ms
40,152 KB
testcase_17 AC 47 ms
36,800 KB
testcase_18 AC 48 ms
37,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;

public class Main{
	public static void main(String[] args) {
		try (BufferedReader br = 
				new BufferedReader(new InputStreamReader(System.in))) {
	        String[] N = br.readLine().split(" ");
	        int cntString = Integer.parseInt(N[0]);
	        int index = Integer.parseInt(N[1]);
	        String[] str = br.readLine().split("");

	        Deque<Integer> deq = new LinkedList<>();
	        Map<Integer, Integer> map = new HashMap<>();
	        
	        for (int i = 0; i < cntString; i++) {
	        	if (str[i].equals("(")) {
	        		deq.addFirst(i);
	        	}
	        	else {
	        		int j = deq.removeFirst();
	        		map.put(i, j);
	        		map.put(j, i);
	        	}
	        }
	        
	        System.out.println(map.get(index - 1) + 1);
		} catch (IOException e) {
			e.printStackTrace();
		}
    }
}
0