結果
問題 | No.592 括弧の対応 (2) |
ユーザー | first_vil |
提出日時 | 2021-12-08 09:44:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 104 ms / 5,000 ms |
コード長 | 424 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 81,996 KB |
実行使用メモリ | 87,836 KB |
最終ジャッジ日時 | 2024-07-16 01:57:10 |
合計ジャッジ時間 | 1,421 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
55,056 KB |
testcase_01 | AC | 104 ms
87,836 KB |
testcase_02 | AC | 97 ms
86,996 KB |
testcase_03 | AC | 98 ms
87,092 KB |
ソースコード
import sys # input = lambda: sys.stdin.buffer.readline() input = lambda: sys.stdin.readline().rstrip() mi = lambda: map(int, input().split()) li = lambda: list(mi()) from collections import deque n = int(input()) st = deque() ans = [0] * n for i, c in enumerate(list(input())): if c == "(": st.append(i) else: j = st.pop() ans[i] = j + 1 ans[j] = i + 1 for x in ans: print(x)