結果

問題 No.592 括弧の対応 (2)
ユーザー mokraimokrai
提出日時 2017-12-03 18:22:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 216 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,232 KB
最終ジャッジ日時 2024-05-06 09:08:56
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 216 ms
33,960 KB
testcase_02 AC 215 ms
34,232 KB
testcase_03 AC 209 ms
33,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    S = input()

    d = {}
    left_paren = []
    for i, e in enumerate(list(S)):
        if e == '(':
            left_paren.append(i)
        else:
            index = left_paren.pop()
            d[index] = i
            d[i] = index

    for i in range(N):
        print(d[i] + 1)


if __name__ == '__main__':
    main()
0