結果

問題 No.22 括弧の対応
ユーザー kohei2019kohei2019
提出日時 2021-02-10 11:35:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-07-07 21:36:43
合計ジャッジ時間 1,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,328 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 33 ms
51,456 KB
testcase_03 AC 40 ms
61,184 KB
testcase_04 AC 41 ms
60,160 KB
testcase_05 AC 40 ms
59,776 KB
testcase_06 AC 41 ms
60,544 KB
testcase_07 AC 41 ms
60,672 KB
testcase_08 AC 41 ms
60,160 KB
testcase_09 AC 41 ms
60,544 KB
testcase_10 AC 42 ms
60,416 KB
testcase_11 AC 40 ms
59,904 KB
testcase_12 AC 40 ms
60,544 KB
testcase_13 AC 42 ms
61,440 KB
testcase_14 AC 38 ms
58,368 KB
testcase_15 AC 41 ms
60,800 KB
testcase_16 AC 41 ms
60,416 KB
testcase_17 AC 33 ms
51,712 KB
testcase_18 AC 33 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
S = list(input())
ls = []
pair = [-1]*(N)
for i in range(N):
    ls.append((S[i],i))
    if len(ls) >= 2:
        if ls[-1][0] == ')' and ls[-2][0] == '(':
            pair[ls[-1][1]] = ls[-2][1]
            pair[ls[-2][1]] = ls[-1][1]
            ls.pop()
            ls.pop()
print(pair[K-1]+1)
0