結果
問題 | No.22 括弧の対応 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-10 12:58:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 5,000 ms |
コード長 | 1,049 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 74,508 KB |
実行使用メモリ | 41,416 KB |
最終ジャッジ日時 | 2024-07-20 06:59:30 |
合計ジャッジ時間 | 5,155 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
41,256 KB |
testcase_01 | AC | 110 ms
40,912 KB |
testcase_02 | AC | 121 ms
41,372 KB |
testcase_03 | AC | 120 ms
40,460 KB |
testcase_04 | AC | 124 ms
41,416 KB |
testcase_05 | AC | 114 ms
40,112 KB |
testcase_06 | AC | 137 ms
41,312 KB |
testcase_07 | AC | 114 ms
40,208 KB |
testcase_08 | AC | 131 ms
41,360 KB |
testcase_09 | AC | 126 ms
41,404 KB |
testcase_10 | AC | 121 ms
41,232 KB |
testcase_11 | AC | 112 ms
40,116 KB |
testcase_12 | AC | 127 ms
41,060 KB |
testcase_13 | AC | 136 ms
41,288 KB |
testcase_14 | AC | 112 ms
40,932 KB |
testcase_15 | AC | 120 ms
40,096 KB |
testcase_16 | AC | 111 ms
40,432 KB |
testcase_17 | AC | 96 ms
39,736 KB |
testcase_18 | AC | 112 ms
41,368 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int n = koko.nextInt(); int x = koko.nextInt(); String a = koko.next(); char[] aa = a.toCharArray(); int count = 0; if(aa[x-1]=='('){ for(int i=0; i<n-x+1; i++){ if(aa[x-1+i]=='('){ count = count + 1; }else{ count = count - 1; if(count==0){ System.out.println(x+i); break; } } } }else{ for(int i=x-1; i>=0; i--){ if(aa[i]==')'){ count = count + 1; }else{ count = count - 1; if(count==0){ System.out.println(i+1); break; } } } } } }