結果

問題 No.22 括弧の対応
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:50:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 62,736 KB
最終ジャッジ日時 2024-09-22 11:27:06
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,260 KB
testcase_01 AC 41 ms
54,832 KB
testcase_02 AC 41 ms
54,060 KB
testcase_03 AC 47 ms
62,736 KB
testcase_04 AC 44 ms
60,320 KB
testcase_05 AC 45 ms
61,444 KB
testcase_06 AC 46 ms
61,360 KB
testcase_07 AC 45 ms
60,556 KB
testcase_08 AC 42 ms
53,852 KB
testcase_09 AC 46 ms
62,372 KB
testcase_10 AC 40 ms
55,288 KB
testcase_11 AC 45 ms
59,924 KB
testcase_12 AC 47 ms
61,528 KB
testcase_13 AC 46 ms
61,576 KB
testcase_14 AC 41 ms
54,628 KB
testcase_15 AC 47 ms
61,292 KB
testcase_16 AC 47 ms
60,568 KB
testcase_17 AC 40 ms
54,012 KB
testcase_18 AC 41 ms
54,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
from collections import deque
st = deque()
S = input()
K -= 1
for i in range(N):
    if S[i] == ")":
        top = st.pop()
        if top[0] == "(":
            if K == i:
                print(top[1] + 1)
                exit()
            elif K == top[1]:
                print(i + 1)
                exit()
        else:
            st.append(top)
            st.append((S[i], i))
    else:
        st.append((S[i], i))
0