結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,872 KB
testcase_01 AC 37 ms
51,872 KB
testcase_02 AC 41 ms
52,804 KB
testcase_03 AC 46 ms
59,784 KB
testcase_04 AC 44 ms
59,120 KB
testcase_05 AC 42 ms
59,752 KB
testcase_06 AC 43 ms
59,892 KB
testcase_07 AC 43 ms
59,912 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 44 ms
60,180 KB
testcase_10 AC 39 ms
52,688 KB
testcase_11 AC 44 ms
60,412 KB
testcase_12 AC 44 ms
59,432 KB
testcase_13 AC 46 ms
60,008 KB
testcase_14 AC 38 ms
52,692 KB
testcase_15 AC 44 ms
59,412 KB
testcase_16 AC 45 ms
60,080 KB
testcase_17 AC 38 ms
52,068 KB
testcase_18 AC 37 ms
53,536 KB
権限があれば一括ダウンロードができます

ソースコード

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