結果

問題 No.22 括弧の対応
ユーザー zakuro9715zakuro9715
提出日時 2015-10-08 00:52:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-07-20 07:03:58
合計ジャッジ時間 2,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,328 KB
testcase_01 AC 42 ms
51,328 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 69 ms
67,200 KB
testcase_04 AC 53 ms
61,184 KB
testcase_05 AC 55 ms
61,440 KB
testcase_06 AC 61 ms
63,616 KB
testcase_07 AC 65 ms
65,792 KB
testcase_08 AC 64 ms
64,896 KB
testcase_09 AC 58 ms
62,336 KB
testcase_10 AC 61 ms
63,360 KB
testcase_11 AC 54 ms
60,288 KB
testcase_12 AC 58 ms
62,720 KB
testcase_13 AC 66 ms
65,920 KB
testcase_14 AC 47 ms
58,240 KB
testcase_15 AC 64 ms
64,896 KB
testcase_16 AC 60 ms
62,720 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
s = input()
m = [-1] * N


def f(i):
    if m[i] != -1:
        return m[i]
    st = i
    i += 1
    while i < N and s[i] == '(':
        i = f(i)
        i += 1
    m[i] = st
    m[st] = i
    return i


for i in range(N):
    if s[i] == '(':
        f(i)

print(m[M - 1] + 1)
0