結果

問題 No.22 括弧の対応
ユーザー splash9494splash9494
提出日時 2024-05-08 18:31:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-05-08 18:31:07
合計ジャッジ時間 2,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,792 KB
testcase_01 AC 38 ms
52,656 KB
testcase_02 AC 41 ms
52,592 KB
testcase_03 AC 38 ms
53,276 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 39 ms
54,100 KB
testcase_06 AC 39 ms
52,164 KB
testcase_07 AC 37 ms
52,552 KB
testcase_08 AC 38 ms
52,136 KB
testcase_09 AC 37 ms
52,868 KB
testcase_10 AC 37 ms
52,752 KB
testcase_11 AC 37 ms
52,748 KB
testcase_12 AC 37 ms
52,372 KB
testcase_13 AC 38 ms
52,928 KB
testcase_14 AC 37 ms
52,680 KB
testcase_15 AC 37 ms
52,772 KB
testcase_16 AC 38 ms
53,140 KB
testcase_17 AC 37 ms
53,964 KB
testcase_18 AC 37 ms
51,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = input()
i = K-1
cnt = 1
start = S[i]
order = 1 if start == '(' else -1
while cnt != 0:
    i += order
    if S[i] == start:
        cnt += 1
    else:
        cnt -= 1
print(i + 1)
0