結果

問題 No.22 括弧の対応
ユーザー qibqib
提出日時 2023-02-24 23:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 61,028 KB
最終ジャッジ日時 2024-09-13 06:11:20
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,344 KB
testcase_01 AC 40 ms
52,636 KB
testcase_02 AC 38 ms
53,128 KB
testcase_03 AC 43 ms
59,776 KB
testcase_04 AC 46 ms
60,844 KB
testcase_05 AC 44 ms
60,232 KB
testcase_06 AC 43 ms
59,572 KB
testcase_07 AC 43 ms
59,988 KB
testcase_08 AC 45 ms
60,456 KB
testcase_09 AC 43 ms
60,656 KB
testcase_10 AC 44 ms
59,492 KB
testcase_11 AC 43 ms
60,896 KB
testcase_12 AC 44 ms
61,028 KB
testcase_13 AC 43 ms
59,992 KB
testcase_14 AC 43 ms
58,556 KB
testcase_15 AC 43 ms
60,160 KB
testcase_16 AC 45 ms
61,004 KB
testcase_17 AC 37 ms
52,608 KB
testcase_18 AC 38 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
s = input()

ans = [None for _ in range(n)]
q = []
for i in range(n):
  if s[i] == "(":
    q.append(i)
  elif s[i] == ")":
    j = q.pop()
    ans[j] = i
    ans[i] = j

print(ans[k - 1] + 1)
0