結果

問題 No.592 括弧の対応 (2)
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-28 03:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 92,260 KB
最終ジャッジ日時 2024-07-06 13:22:31
合計ジャッジ時間 1,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,280 KB
testcase_01 AC 83 ms
88,064 KB
testcase_02 AC 86 ms
92,260 KB
testcase_03 AC 79 ms
85,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = str(input())

C = [-1]*n

d = []
for i in range(n):
    if s[i] == '(':
        d.append(i)
    else:
        j = d.pop()
        C[i] = j+1
        C[j] = i+1

print(*C, sep='\n')
0