結果

問題 No.22 括弧の対応
ユーザー yun_appyun_app
提出日時 2016-05-10 12:06:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 1,093 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 75,892 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-07-20 07:13:07
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,912 KB
testcase_01 AC 57 ms
36,780 KB
testcase_02 AC 58 ms
36,440 KB
testcase_03 AC 62 ms
36,844 KB
testcase_04 AC 64 ms
36,828 KB
testcase_05 AC 62 ms
36,908 KB
testcase_06 AC 62 ms
36,544 KB
testcase_07 AC 71 ms
37,108 KB
testcase_08 AC 64 ms
36,720 KB
testcase_09 AC 70 ms
36,980 KB
testcase_10 AC 65 ms
36,436 KB
testcase_11 AC 66 ms
36,520 KB
testcase_12 AC 62 ms
36,980 KB
testcase_13 AC 68 ms
36,680 KB
testcase_14 AC 59 ms
36,720 KB
testcase_15 AC 63 ms
37,040 KB
testcase_16 AC 73 ms
36,960 KB
testcase_17 AC 69 ms
36,388 KB
testcase_18 AC 66 ms
36,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int n = Integer.parseInt(lines[0]);
        int k = Integer.parseInt(lines[1])-1;
        String line = br.readLine();
        
        Deque<Integer> deque = new ArrayDeque<Integer>();
        for(int i=0;i<n;i++){
            char c = line.charAt(i);
            if(c == '('){
                deque.addFirst(i);
            }else if(c == ')'){
                int t = deque.removeFirst();
                if(t == k){
                    System.out.println(i+1);
                    break;
                }else if(i == k){
                    System.out.println(t+1);
                    break;
                }
            }
        }
    }
}
0