結果

問題 No.22 括弧の対応
ユーザー Meso MesoMeso Meso
提出日時 2024-05-21 10:50:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-21 10:50:28
合計ジャッジ時間 1,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

k -= 1
cnt = 0
if s[k] == "(":
    for i in range(k, n):
        if s[i] == "(":
            cnt += 1
        else:
            cnt -= 1
        if cnt == 0:
            print(i + 1)
            break
else:
    for i in range(n-1, -1, -1):
        if s[i] == ")":
            cnt += 1
        else:
            cnt -= 1
        if cnt == 0:
            print(i + 1)
            break
0