結果

問題 No.592 括弧の対応 (2)
ユーザー yumechiyumechi
提出日時 2017-11-24 23:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-11-27 08:36:14
合計ジャッジ時間 1,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 159 ms
99,200 KB
testcase_02 AC 109 ms
102,272 KB
testcase_03 AC 112 ms
97,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
leftcounter = rightcounter = 0
llist, rlist, tlist = [], [], []
for i in range(N):
    if S[i] == "(":
        leftcounter += 1
        llist.append(i + 1)
    if S[i] == ")":
        rightcounter += 1
        rlist.append(i + 1)
        if leftcounter >= rightcounter:
            l = llist.pop()
            r = rlist.pop()
            tlist.append([l, r])

ans = [0]*N
for e in tlist:
    ans[e[0]-1] = str(e[1])
    ans[e[1]-1] = str(e[0])
print("\n".join(ans))
0