結果

問題 No.22 括弧の対応
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 21:34:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 730 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-07-20 07:08:32
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,200 KB
testcase_01 AC 144 ms
41,056 KB
testcase_02 AC 145 ms
41,304 KB
testcase_03 AC 160 ms
41,888 KB
testcase_04 AC 155 ms
41,164 KB
testcase_05 AC 160 ms
41,248 KB
testcase_06 AC 150 ms
41,204 KB
testcase_07 AC 149 ms
41,272 KB
testcase_08 AC 163 ms
41,460 KB
testcase_09 AC 167 ms
41,620 KB
testcase_10 AC 174 ms
41,568 KB
testcase_11 AC 170 ms
41,260 KB
testcase_12 AC 168 ms
41,268 KB
testcase_13 AC 168 ms
41,308 KB
testcase_14 AC 158 ms
41,112 KB
testcase_15 AC 170 ms
41,140 KB
testcase_16 AC 172 ms
41,300 KB
testcase_17 AC 155 ms
40,892 KB
testcase_18 AC 153 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt()-1;
		char[] s = sc.next().toCharArray();
		while(true)
		for(int i = 0; i < n; i++) {
			if(s[i] == ')' || s[i] == ' ') continue;
			if(s[i] == '(') {
				for(int j = i + 1; j < n; j++) {
					if(s[j] == ' ') continue;
					if(s[j] == '(') break;
					if(s[j] == ')') {
						if(i == k) {
							System.out.println(j+1);
							return;
						}
						else if(j == k) {
							System.out.println(i+1);
							return;
						}
						else {
							s[i] = ' ';
							s[j] = ' ';
							break;
						}
					}
				}
			}
		}
	}
}
0