結果
問題 | No.22 括弧の対応 |
ユーザー | kashiwagi513 |
提出日時 | 2019-02-23 20:57:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 213 ms / 5,000 ms |
コード長 | 757 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-07-20 07:40:25 |
合計ジャッジ時間 | 3,102 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
11,008 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 32 ms
11,008 KB |
testcase_03 | AC | 202 ms
12,288 KB |
testcase_04 | AC | 71 ms
11,776 KB |
testcase_05 | AC | 60 ms
11,520 KB |
testcase_06 | AC | 147 ms
11,648 KB |
testcase_07 | AC | 97 ms
11,904 KB |
testcase_08 | AC | 48 ms
11,776 KB |
testcase_09 | AC | 101 ms
11,520 KB |
testcase_10 | AC | 67 ms
12,032 KB |
testcase_11 | AC | 59 ms
11,392 KB |
testcase_12 | AC | 110 ms
11,648 KB |
testcase_13 | AC | 213 ms
12,160 KB |
testcase_14 | AC | 33 ms
11,264 KB |
testcase_15 | AC | 163 ms
12,032 KB |
testcase_16 | AC | 196 ms
12,160 KB |
testcase_17 | AC | 30 ms
11,008 KB |
testcase_18 | AC | 30 ms
11,008 KB |
ソースコード
# -*- coding: utf-8 -*- from queue import LifoQueue def index(l): return l[0] def value(l): return l[1] def match(l, r): return value(l) == '(' and value(r) == ')' def reduce(ls, goal): ls = ls stack = LifoQueue() while len(ls) >= 2: hd, hd_, rest = ls[0], ls[1], ls[2:] if match(hd, hd_): if index(hd) == goal: return index(hd_) if index(hd_) == goal: return index(hd) ls = [stack.get()] + rest if not stack.empty() else rest else: stack.put(hd) ls = [hd_] + rest def solve(n, k, s): ls = [(i+1, c) for i, c in enumerate(s)] print(reduce(ls, k)) n, k = input().split() s = input() solve(int(n), int(k), s)