結果

問題 No.22 括弧の対応
ユーザー otsunekootsuneko
提出日時 2021-05-14 15:53:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-10-01 20:24:45
合計ジャッジ時間 1,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,620 KB
testcase_01 AC 43 ms
53,120 KB
testcase_02 AC 71 ms
52,864 KB
testcase_03 AC 47 ms
60,544 KB
testcase_04 AC 46 ms
59,392 KB
testcase_05 AC 47 ms
59,264 KB
testcase_06 AC 46 ms
60,288 KB
testcase_07 AC 47 ms
59,392 KB
testcase_08 AC 43 ms
53,888 KB
testcase_09 AC 48 ms
60,160 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 45 ms
59,136 KB
testcase_12 AC 47 ms
59,904 KB
testcase_13 AC 48 ms
60,032 KB
testcase_14 AC 42 ms
53,120 KB
testcase_15 AC 46 ms
60,032 KB
testcase_16 AC 47 ms
60,412 KB
testcase_17 AC 41 ms
53,376 KB
testcase_18 AC 41 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,K = map(int,input().split())
S = input()

d = deque()
for i in range(N):
    if S[i] == "(":
        d.append(i+1)
    else:
        n = d.pop()
        if K == i+1:
            print(n)
            break
        elif K == n:
            print(i+1)
            break
0