結果

問題 No.22 括弧の対応
ユーザー ぴろずぴろず
提出日時 2014-12-19 11:24:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-07-20 06:56:07
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,988 KB
testcase_01 AC 96 ms
39,736 KB
testcase_02 AC 106 ms
40,248 KB
testcase_03 AC 131 ms
41,364 KB
testcase_04 AC 130 ms
41,396 KB
testcase_05 AC 138 ms
41,160 KB
testcase_06 AC 125 ms
41,380 KB
testcase_07 AC 117 ms
40,208 KB
testcase_08 AC 128 ms
41,212 KB
testcase_09 AC 134 ms
41,284 KB
testcase_10 AC 117 ms
40,500 KB
testcase_11 AC 110 ms
40,160 KB
testcase_12 AC 132 ms
41,164 KB
testcase_13 AC 118 ms
40,800 KB
testcase_14 AC 124 ms
41,236 KB
testcase_15 AC 127 ms
41,148 KB
testcase_16 AC 131 ms
41,180 KB
testcase_17 AC 126 ms
41,120 KB
testcase_18 AC 119 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no022;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		String s = sc.next();
		int nest = 0;
		while(true) {
			if (s.charAt(k-1) == '(') {
				nest++;
			}else{
				nest--;
			}
			if (nest == 0) {
				break;
			}
			if (nest > 0) {
				k++;
			}else{
				k--;
			}
		}
		System.out.println(k);
	}

}
0