結果

問題 No.22 括弧の対応
ユーザー convexineqconvexineq
提出日時 2020-11-25 06:31:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 60,412 KB
最終ジャッジ日時 2024-07-23 19:11:57
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
s = input()
st = []
for i,si in enumerate(s):
    i += 1
    if st and st[-1][0] == "(" and si == ")":
        if i == k:
            ans = st[-1][1]
            break
        elif st[-1][1] == k:
            ans = i
            break
        else:
            st.pop()
    else:
        st.append((si,i))

print(ans)
0