結果

問題 No.22 括弧の対応
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 12:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 61,044 KB
最終ジャッジ日時 2024-11-04 12:36:17
合計ジャッジ時間 2,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,552 KB
testcase_01 AC 36 ms
52,856 KB
testcase_02 AC 35 ms
52,504 KB
testcase_03 AC 41 ms
60,660 KB
testcase_04 AC 40 ms
60,740 KB
testcase_05 AC 43 ms
60,380 KB
testcase_06 AC 42 ms
61,044 KB
testcase_07 AC 41 ms
59,404 KB
testcase_08 AC 38 ms
52,272 KB
testcase_09 AC 41 ms
59,900 KB
testcase_10 AC 37 ms
52,916 KB
testcase_11 AC 40 ms
59,408 KB
testcase_12 AC 41 ms
59,896 KB
testcase_13 AC 42 ms
59,788 KB
testcase_14 AC 37 ms
53,492 KB
testcase_15 AC 42 ms
60,224 KB
testcase_16 AC 42 ms
59,588 KB
testcase_17 AC 37 ms
53,012 KB
testcase_18 AC 37 ms
51,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

stack = []
for i, s in enumerate(S):
    if s == '(':
        stack.append(i)
    else:
        l = stack.pop()
        if i == K:
            print(l + 1)
            break
        elif l == K:
            print(i + 1)
            break
0