結果
問題 | No.22 括弧の対応 |
ユーザー | kuramu |
提出日時 | 2016-01-20 10:21:20 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 53 ms / 5,000 ms |
コード長 | 1,047 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 82,820 KB |
実行使用メモリ | 37,200 KB |
最終ジャッジ日時 | 2024-07-20 07:08:18 |
合計ジャッジ時間 | 3,859 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
36,952 KB |
testcase_01 | AC | 51 ms
36,916 KB |
testcase_02 | AC | 50 ms
37,148 KB |
testcase_03 | AC | 53 ms
37,176 KB |
testcase_04 | AC | 50 ms
37,188 KB |
testcase_05 | AC | 49 ms
36,896 KB |
testcase_06 | AC | 50 ms
36,940 KB |
testcase_07 | AC | 51 ms
37,020 KB |
testcase_08 | AC | 50 ms
37,144 KB |
testcase_09 | AC | 50 ms
37,108 KB |
testcase_10 | AC | 48 ms
37,200 KB |
testcase_11 | AC | 49 ms
37,100 KB |
testcase_12 | AC | 49 ms
37,084 KB |
testcase_13 | AC | 49 ms
36,952 KB |
testcase_14 | AC | 48 ms
36,848 KB |
testcase_15 | AC | 50 ms
37,032 KB |
testcase_16 | AC | 50 ms
37,012 KB |
testcase_17 | AC | 49 ms
36,896 KB |
testcase_18 | AC | 47 ms
37,176 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { String[] elements = stdReader.readLine().split(" "); int N = Integer.parseInt(elements[0]); int K = Integer.parseInt(elements[1])-1; String c = stdReader.readLine(); int count = 0; if((""+c.charAt(K)).equals("(")){ for(int i=K;i<N;i++){ if((""+c.charAt(i)).equals("(")) count++; else count--; if(count == 0){ System.out.println(i+1); break; } } }else{ for(int i=K;0<=i;i--){ if((""+c.charAt(i)).equals(")"))count++; else count--; if(count == 0){ System.out.println(i+1); break; } } } } catch (IOException e) { e.printStackTrace(); } } }