結果

問題 No.22 括弧の対応
ユーザー nohakai3nohakai3
提出日時 2022-10-22 10:57:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 63,792 KB
最終ジャッジ日時 2024-07-01 14:03:22
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,116 KB
testcase_01 AC 45 ms
54,036 KB
testcase_02 AC 42 ms
54,664 KB
testcase_03 AC 49 ms
63,792 KB
testcase_04 AC 49 ms
60,752 KB
testcase_05 AC 47 ms
62,528 KB
testcase_06 AC 47 ms
63,612 KB
testcase_07 AC 47 ms
63,272 KB
testcase_08 AC 47 ms
61,528 KB
testcase_09 AC 48 ms
62,408 KB
testcase_10 AC 47 ms
61,968 KB
testcase_11 AC 48 ms
62,508 KB
testcase_12 AC 47 ms
63,580 KB
testcase_13 AC 48 ms
61,732 KB
testcase_14 AC 45 ms
60,284 KB
testcase_15 AC 48 ms
62,884 KB
testcase_16 AC 48 ms
63,372 KB
testcase_17 AC 42 ms
53,516 KB
testcase_18 AC 41 ms
53,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
l=list(input())
from collections import deque
s=deque()
ans=[]
for i in range(n):
    if l[i]=="(":
        s.append(i)
    else:
        ans.append([i+1,s.pop()+1])

for x in ans:
    if x[0]==k:
        print(x[1])
        exit()
    elif x[1]==k:
        print(x[0])
        exit()
0