結果

問題 No.22 括弧の対応
ユーザー ytftytft
提出日時 2022-11-03 17:14:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 53,372 KB
最終ジャッジ日時 2024-07-18 01:46:53
合計ジャッジ時間 1,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,616 KB
testcase_01 AC 41 ms
52,652 KB
testcase_02 AC 33 ms
52,020 KB
testcase_03 AC 34 ms
53,280 KB
testcase_04 AC 34 ms
52,068 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 35 ms
52,688 KB
testcase_07 AC 35 ms
52,640 KB
testcase_08 AC 35 ms
52,560 KB
testcase_09 AC 34 ms
51,888 KB
testcase_10 AC 35 ms
52,896 KB
testcase_11 AC 39 ms
52,684 KB
testcase_12 AC 36 ms
51,880 KB
testcase_13 AC 34 ms
53,004 KB
testcase_14 AC 35 ms
53,264 KB
testcase_15 AC 35 ms
52,492 KB
testcase_16 AC 35 ms
52,832 KB
testcase_17 AC 36 ms
52,316 KB
testcase_18 AC 38 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,K=map(int,input().split())
S=input()
K-=1
pointer=K
count=1
while 1:
	pointer+=[1,-1][S[K]==')']
	count+=[1,-1][S[K]!=S[pointer]]
	if count==0:
		print(pointer+1)
		sys.exit()
0