結果

問題 No.22 括弧の対応
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-14 21:13:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 66,888 KB
最終ジャッジ日時 2024-06-23 03:14:32
合計ジャッジ時間 2,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,844 KB
testcase_01 AC 42 ms
55,804 KB
testcase_02 AC 43 ms
56,916 KB
testcase_03 AC 50 ms
66,888 KB
testcase_04 AC 49 ms
64,100 KB
testcase_05 AC 50 ms
63,812 KB
testcase_06 AC 50 ms
64,780 KB
testcase_07 AC 49 ms
65,268 KB
testcase_08 AC 51 ms
64,488 KB
testcase_09 AC 50 ms
65,448 KB
testcase_10 AC 49 ms
64,528 KB
testcase_11 AC 51 ms
64,408 KB
testcase_12 AC 49 ms
64,076 KB
testcase_13 AC 50 ms
65,880 KB
testcase_14 AC 48 ms
62,916 KB
testcase_15 AC 51 ms
66,292 KB
testcase_16 AC 51 ms
65,956 KB
testcase_17 AC 44 ms
56,180 KB
testcase_18 AC 44 ms
56,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,K = map(int,input().split())
S = list(input())[:-1]
L = deque()
R = deque()
Y = defaultdict(lambda:-1)
for i,s in enumerate(S):
    
    if s==')':
        j = L.pop()
        Y[j]=i
        Y[i]=j
    else:
        L.append(i)
        
print(Y[K-1]+1)
    
    
0