結果

問題 No.22 括弧の対応
ユーザー nishimanishima
提出日時 2015-10-12 01:22:50
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-21 07:07:20
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,032 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 101 ms
12,160 KB
testcase_03 AC 100 ms
12,672 KB
testcase_04 AC 98 ms
12,416 KB
testcase_05 AC 100 ms
12,544 KB
testcase_06 AC 99 ms
12,544 KB
testcase_07 WA -
testcase_08 AC 99 ms
12,544 KB
testcase_09 WA -
testcase_10 AC 100 ms
12,544 KB
testcase_11 AC 100 ms
12,416 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 101 ms
12,800 KB
testcase_16 AC 104 ms
12,672 KB
testcase_17 AC 96 ms
12,032 KB
testcase_18 AC 96 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

d1 =  $stdin.gets.chomp.split(/ /).map(&:to_i)
d2 =  $stdin.gets.chomp.split(//).map{ |e| 
	if e == '(' then 1
	else		    -1
	end
}
n = d1[ 0 ]
k = d1[ 1 ]
ans = 0

if d2[ k - 1 ] == 1	# '('
	sum = d2[ k - 1 ]
	k.upto( n - 1 ){ |i|
		sum += d2[ i ]
		if sum == 0
			ans = i + 1
			break
		end
	}
else				# ')'
	sum = d2[ k - 1 ]
	(k-2).downto( 0 ){ |i|
		sum += d2[ i ]
		if sum == 0
			ans = i + 1
		end
	}

end
puts ans
0