結果

問題 No.22 括弧の対応
ユーザー convexineqconvexineq
提出日時 2020-11-25 06:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 60,856 KB
最終ジャッジ日時 2024-07-23 19:12:05
合計ジャッジ時間 1,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 40 ms
52,688 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 47 ms
59,756 KB
testcase_04 AC 42 ms
58,624 KB
testcase_05 AC 41 ms
59,220 KB
testcase_06 AC 44 ms
59,532 KB
testcase_07 AC 42 ms
58,884 KB
testcase_08 AC 39 ms
54,292 KB
testcase_09 AC 45 ms
59,616 KB
testcase_10 AC 40 ms
52,332 KB
testcase_11 AC 44 ms
59,684 KB
testcase_12 AC 46 ms
60,856 KB
testcase_13 AC 45 ms
59,232 KB
testcase_14 AC 38 ms
52,592 KB
testcase_15 AC 44 ms
59,352 KB
testcase_16 AC 43 ms
59,376 KB
testcase_17 AC 38 ms
52,212 KB
testcase_18 AC 39 ms
52,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(ans)
0