結果

問題 No.22 括弧の対応
ユーザー jamadjamad
提出日時 2017-06-16 03:22:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 199 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-25 03:24:58
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 32 ms
11,392 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
11,136 KB
testcase_07 RE -
testcase_08 AC 31 ms
11,136 KB
testcase_09 RE -
testcase_10 AC 32 ms
11,136 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 33 ms
11,264 KB
testcase_16 AC 32 ms
11,136 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
S=list(input())
ANS={}
queue=[]
for i in range(N):
    if S[i]==')':
        idx=queue.pop()
        ANS[idx]=i+1
    else:# =='('
        queue.append(i+1)
print(ANS[K])
0