結果

問題 No.592 括弧の対応 (2)
ユーザー daku9640daku9640
提出日時 2017-11-10 22:59:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,524 KB
最終ジャッジ日時 2024-05-03 13:10:03
合計ジャッジ時間 1,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 207 ms
23,512 KB
testcase_02 AC 198 ms
23,524 KB
testcase_03 AC 201 ms
23,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
ans = [0] * int(readline())
dq = []
for i, s in enumerate(readline().strip()):
    if s == "(":
        dq.append(i)
    else:
        k = dq.pop()
        ans[k] = i + 1
        ans[i] = k + 1
print(*ans, sep="\n")
0