結果

問題 No.22 括弧の対応
ユーザー akanayaakanaya
提出日時 2020-03-22 13:42:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 680 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-06-06 22:41:59
合計ジャッジ時間 9,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 509 ms
88,064 KB
testcase_01 AC 514 ms
44,224 KB
testcase_02 AC 513 ms
44,236 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np
import queue
import sys 

input = sys.stdin.readline
# sys.setrecursionlimit(25000)

n, k = list(map(int, input().split(' ')))
s = input()
s_i = [i for i in range(1, n + 1)]

stack = queue.LifoQueue()
stack_i = queue.LifoQueue()

stack.put(s[0])
stack_i.put(s_i[0])

i = 1
result = -1
while(i < n):
    val = s[i]
    val_i = s_i[i]
    top = stack.get()

    if top != val:
        temp = stack_i.get()
        if temp == k:
            result = val_i
            break
        elif val_i == k:
            result = temp
            break
    else:
        stack.put(top)
        stack.put(val)
        stack_i.put(val_i)
    i += 1

print(result)
0