結果

問題 No.22 括弧の対応
ユーザー mlihua09mlihua09
提出日時 2020-08-27 15:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-07-20 07:52:15
合計ジャッジ時間 1,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,740 KB
testcase_01 AC 43 ms
53,300 KB
testcase_02 AC 42 ms
52,064 KB
testcase_03 AC 38 ms
53,004 KB
testcase_04 AC 39 ms
51,908 KB
testcase_05 AC 37 ms
52,968 KB
testcase_06 AC 39 ms
52,168 KB
testcase_07 AC 38 ms
53,128 KB
testcase_08 AC 39 ms
52,496 KB
testcase_09 AC 39 ms
52,756 KB
testcase_10 AC 43 ms
53,148 KB
testcase_11 AC 38 ms
52,960 KB
testcase_12 AC 38 ms
52,896 KB
testcase_13 AC 38 ms
52,900 KB
testcase_14 AC 39 ms
52,212 KB
testcase_15 AC 39 ms
52,020 KB
testcase_16 AC 39 ms
52,940 KB
testcase_17 AC 38 ms
53,148 KB
testcase_18 AC 38 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

S = input()

x = 0


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