結果

問題 No.22 括弧の対応
ユーザー yoshi_kyoshi_k
提出日時 2017-09-19 00:32:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-20 07:25:46
合計ジャッジ時間 1,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

try:
    import mydebug

    def dprint(*objects, sep='', end='\n'):
        print(*objects)
except:
    def dprint(*objects, sep='', end='\n'): pass

n, k = [int(x) for x in input().split()]
s = input().rstrip()

stc = []
pairs = []
dprint(s)
state = ""
dprint("len(s)",len(s))
for i in range(len(s)):
    dprint("-----", i+1, s[i])
    if s[i] == "(":
        dprint("append", i+1)
        stc.append(i+1)
        state += "("
        dprint(state)
    else:
        state = state[:-1]
        dprint(state)
        dprint("pop", stc[-1])
        pairs.append((i+1, stc[-1]))
        stc.pop()

def other(t, n):
    if t[0] == n:
        return t[1]
    else:
        return t[0]

for p in pairs:
    if k in p:
        dprint(p)
        print(other(p, k))
0