結果

問題 No.592 括弧の対応 (2)
ユーザー Yuhel TanakaYuhel Tanaka
提出日時 2018-12-20 13:34:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 334 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,084 KB
最終ジャッジ日時 2024-09-25 08:53:44
合計ジャッジ時間 1,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 334 ms
33,872 KB
testcase_02 AC 330 ms
36,084 KB
testcase_03 AC 302 ms
31,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

d=dd(int)
l=[]
n=int(input())

for i,j in enumerate(input(),start=1):
    if not l:
        l.append((i,j))
    else:
        a,b=l[-1]
        if b=="(" and j==")":
            d[a],d[i]=i,a
            l.pop()
        else:
            l.append((i,j))

for i in range(1,n+1):
    print(d[i])
0