結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,788 KB
testcase_01 AC 38 ms
52,300 KB
testcase_02 AC 37 ms
52,644 KB
testcase_03 AC 38 ms
53,116 KB
testcase_04 AC 36 ms
52,884 KB
testcase_05 AC 37 ms
52,888 KB
testcase_06 AC 40 ms
52,632 KB
testcase_07 AC 41 ms
53,880 KB
testcase_08 AC 41 ms
52,328 KB
testcase_09 AC 40 ms
52,820 KB
testcase_10 AC 39 ms
53,020 KB
testcase_11 AC 38 ms
52,580 KB
testcase_12 AC 40 ms
51,872 KB
testcase_13 AC 39 ms
53,148 KB
testcase_14 AC 40 ms
51,632 KB
testcase_15 AC 40 ms
51,960 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 40 ms
52,752 KB
testcase_18 AC 41 ms
52,004 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