結果

問題 No.592 括弧の対応 (2)
ユーザー htkbhtkb
提出日時 2017-11-10 22:31:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,816 KB
最終ジャッジ日時 2024-11-24 12:38:18
合計ジャッジ時間 1,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 140 ms
31,304 KB
testcase_02 AC 140 ms
31,816 KB
testcase_03 AC 136 ms
31,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
s = input()
result = [0]*N
dq = deque()
append, pop = dq.append, dq.pop
for i, c in enumerate(s):
    if c == "(":
        append(i)
    else:
        n = pop()
        result[n] = i+1
        result[i] = n+1
print("\n".join(map(str,result)))
0