結果

問題 No.22 括弧の対応
ユーザー TomoyarnTomoyarn
提出日時 2022-02-19 11:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 60,536 KB
最終ジャッジ日時 2024-06-29 10:22:04
合計ジャッジ時間 1,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,204 KB
testcase_01 AC 34 ms
52,152 KB
testcase_02 AC 33 ms
51,964 KB
testcase_03 AC 37 ms
59,440 KB
testcase_04 AC 36 ms
59,232 KB
testcase_05 AC 37 ms
58,980 KB
testcase_06 AC 36 ms
59,224 KB
testcase_07 AC 35 ms
60,372 KB
testcase_08 AC 36 ms
59,100 KB
testcase_09 AC 38 ms
60,492 KB
testcase_10 AC 39 ms
60,536 KB
testcase_11 AC 41 ms
58,960 KB
testcase_12 AC 37 ms
59,524 KB
testcase_13 AC 37 ms
58,848 KB
testcase_14 AC 36 ms
59,280 KB
testcase_15 AC 37 ms
60,204 KB
testcase_16 AC 37 ms
59,584 KB
testcase_17 AC 34 ms
52,452 KB
testcase_18 AC 34 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder No.22 括弧の対応
N, K = map(int, input().split())
S = input()
d = []
cnt = 0
for i in range(N):
    if S[i] == "(":
        cnt += 1
    else:
        cnt -= 1
    d.append(cnt)

i = K - 1
if S[i] == ")":
    while True:
        i -= 1
        if d[i] == d[K - 1] + 1 and S[i] == "(":
            print(i + 1)
            break
else:
    while True:
        i += 1
        if d[i] == d[K - 1] - 1 and S[i] == ")":
            print(i + 1)
            break

        
0