結果

問題 No.22 括弧の対応
ユーザー ABKZABKZ
提出日時 2021-10-03 23:20:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 483 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-07-21 20:58:32
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,120 KB
testcase_01 AC 38 ms
53,432 KB
testcase_02 AC 37 ms
52,160 KB
testcase_03 AC 38 ms
53,224 KB
testcase_04 AC 38 ms
52,424 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 38 ms
52,072 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 42 ms
52,772 KB
testcase_09 AC 36 ms
53,100 KB
testcase_10 AC 37 ms
52,624 KB
testcase_11 AC 38 ms
53,156 KB
testcase_12 AC 37 ms
53,016 KB
testcase_13 AC 37 ms
52,200 KB
testcase_14 AC 37 ms
52,956 KB
testcase_15 AC 36 ms
53,716 KB
testcase_16 AC 39 ms
52,440 KB
testcase_17 AC 36 ms
53,900 KB
testcase_18 AC 37 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if S[K-1] == "(":
    op = 0
    cl = 0
    for i in range(K, N):
        if S[i] == "(":
            op += 1
        else:
            cl += 1
        
        if cl - op == 1:
            print(i + 1)
            break
else:
    op = 0
    cl = 0
    for i in range(K-2, -1, -1):
        if S[i] == "(":
            op += 1
        else:
            cl += 1
        
        if op - cl == 1:
            print(i + 1)
            break
0