結果

問題 No.22 括弧の対応
ユーザー AtamaokaCAtamaokaC
提出日時 2021-06-19 17:54:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-06-22 22:13:43
合計ジャッジ時間 1,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,700 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 42 ms
58,112 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 42 ms
58,368 KB
testcase_10 AC 41 ms
52,204 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 42 ms
59,008 KB
testcase_13 AC 44 ms
59,136 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inpl = lambda: list(map(int,input().split()))
N, K = inpl()
S = input()
if S[K-1] == '(':
    i = K-1
else:
    i = 0
pool = [i]
for j in range(i+1,N):
    if S[j] == '(':
        pool.append(j)
    else:
        p = pool.pop()
        if j == K-1:
            print(p+1)
            break
        elif p == K-1:
            print(j+1)
            break
0