結果

問題 No.592 括弧の対応 (2)
ユーザー mokraimokrai
提出日時 2017-12-03 18:22:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,100 KB
最終ジャッジ日時 2024-11-28 14:35:33
合計ジャッジ時間 1,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 217 ms
33,948 KB
testcase_02 AC 217 ms
34,100 KB
testcase_03 AC 213 ms
33,356 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