結果

問題 No.592 括弧の対応 (2)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-30 19:30:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-12-30 19:30:41
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 116 ms
85,964 KB
testcase_02 AC 121 ms
91,904 KB
testcase_03 AC 110 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
a=[0]*n
q=[]
for i in range(n):
	c=s[i]
	if s[i]=="(":
		q+=[i]
	else:
		a[q[-1]]=i+1
		a[i]=q[-1]+1
		q.pop()
print(*a,sep="\n")
0