結果

問題 No.22 括弧の対応
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-12-31 10:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 61,840 KB
最終ジャッジ日時 2024-10-08 00:09:24
合計ジャッジ時間 1,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,916 KB
testcase_01 AC 36 ms
52,228 KB
testcase_02 AC 35 ms
53,220 KB
testcase_03 AC 40 ms
60,528 KB
testcase_04 AC 41 ms
59,996 KB
testcase_05 AC 38 ms
59,692 KB
testcase_06 AC 42 ms
61,840 KB
testcase_07 AC 40 ms
60,476 KB
testcase_08 AC 40 ms
61,128 KB
testcase_09 AC 40 ms
61,044 KB
testcase_10 AC 39 ms
59,932 KB
testcase_11 AC 39 ms
61,052 KB
testcase_12 AC 39 ms
60,236 KB
testcase_13 AC 39 ms
60,300 KB
testcase_14 AC 38 ms
58,044 KB
testcase_15 AC 40 ms
61,160 KB
testcase_16 AC 39 ms
61,040 KB
testcase_17 AC 33 ms
52,060 KB
testcase_18 AC 33 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
par = [-1]*n
S = list(input())

l = []
for i,s in enumerate(S):
    if s == "(":
        l.append([s,i])
        continue
    if l[-1][0] == "(":
        _,p = l.pop()
        par[p] = i
        par[i] = p
print(par[k-1]+1) 
0