結果

問題 No.22 括弧の対応
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2019-12-30 09:49:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,538 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 07:46:58
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 36 ms
10,624 KB
testcase_03 AC 430 ms
10,752 KB
testcase_04 AC 112 ms
10,624 KB
testcase_05 AC 88 ms
10,624 KB
testcase_06 AC 528 ms
10,624 KB
testcase_07 AC 118 ms
10,752 KB
testcase_08 AC 42 ms
10,624 KB
testcase_09 AC 472 ms
10,752 KB
testcase_10 AC 55 ms
10,624 KB
testcase_11 AC 105 ms
10,752 KB
testcase_12 AC 328 ms
10,624 KB
testcase_13 AC 1,538 ms
10,624 KB
testcase_14 AC 40 ms
10,752 KB
testcase_15 AC 307 ms
10,624 KB
testcase_16 AC 517 ms
10,624 KB
testcase_17 AC 32 ms
10,496 KB
testcase_18 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

s_list = list(s)
len_s = len(s_list)
comb_list = []
checked = 0

res = None
while checked != n:
    close_index = s_list.index(')')
    open_index = None
    for i in range(close_index):
        if s_list[i] == '(':
            open_index = i
            
    if open_index == k - 1:
        res = close_index + 1
        break
    elif close_index == k - 1:
        res = open_index + 1
        break
        
    s_list[close_index] = 'x'
    s_list[open_index] = 'x'
    checked += 2
    
print(res)
0