結果

問題 No.22 括弧の対応
ユーザー flippergoflippergo
提出日時 2021-01-02 10:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 61,620 KB
最終ジャッジ日時 2024-10-12 00:06:23
合計ジャッジ時間 1,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,692 KB
testcase_01 AC 38 ms
52,264 KB
testcase_02 AC 37 ms
53,244 KB
testcase_03 AC 45 ms
59,736 KB
testcase_04 AC 43 ms
58,820 KB
testcase_05 AC 43 ms
58,440 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 43 ms
60,500 KB
testcase_08 AC 39 ms
53,420 KB
testcase_09 AC 44 ms
60,024 KB
testcase_10 AC 39 ms
52,440 KB
testcase_11 AC 43 ms
60,012 KB
testcase_12 AC 45 ms
61,568 KB
testcase_13 AC 45 ms
61,620 KB
testcase_14 AC 38 ms
54,024 KB
testcase_15 AC 43 ms
59,360 KB
testcase_16 AC 44 ms
59,600 KB
testcase_17 AC 37 ms
53,200 KB
testcase_18 AC 37 ms
52,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
K -= 1
S = input().strip()
stk = []
for i in range(N):
    if len(stk)>0 and stk[-1][0]=="(":
        if S[i]==")":
            if i==K or stk[-1][1]==K:
                if i==K:
                    print(stk[-1][1]+1)
                else:
                    print(i+1)
                break
            stk.pop()
        else:
            stk.append((S[i],i))
    else:
        stk.append((S[i],i))
0