結果

問題 No.22 括弧の対応
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 17:02:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 2,738 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-07-20 06:58:41
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,352 KB
testcase_01 AC 131 ms
41,108 KB
testcase_02 AC 129 ms
41,184 KB
testcase_03 AC 147 ms
41,232 KB
testcase_04 AC 145 ms
41,032 KB
testcase_05 AC 149 ms
41,196 KB
testcase_06 AC 148 ms
41,136 KB
testcase_07 AC 153 ms
41,248 KB
testcase_08 AC 152 ms
41,192 KB
testcase_09 AC 147 ms
41,364 KB
testcase_10 AC 149 ms
41,188 KB
testcase_11 AC 155 ms
41,164 KB
testcase_12 AC 156 ms
41,380 KB
testcase_13 AC 161 ms
41,300 KB
testcase_14 AC 153 ms
40,944 KB
testcase_15 AC 163 ms
41,296 KB
testcase_16 AC 167 ms
41,212 KB
testcase_17 AC 151 ms
41,024 KB
testcase_18 AC 148 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		s.nextInt();
		int K=s.nextInt()-1,i,D,L=1;
		String P=s.next();
		D=81-2*P.charAt(K);
		for(i=K+D;0!=(L+=D*(81-2*P.charAt(i)));i+=D);
		System.out.println(i+1);
	}
}
0