結果

問題 No.22 括弧の対応
ユーザー 9V72n9V72n
提出日時 2020-04-04 08:45:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-03 07:00:04
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 27 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
S = input()
count = 0
count_pos = 0
if S[K-1] == "(":
    for i in range(K,N):
        if S[i-1] == "(":
            count += 1
        if S[i-1] == ")":
            count -= 1
        if count == 0:
            count_pos = i
            break
if S[K-1] == ")":
    S = S[::-1]
    for i in range(K,N-K):
        if S[i] == ")":
            count += 1
        if S[i] == "(":
            count -= 1
        if count == 0:
            count_pos = i
            break
print(count_pos)
0