結果
問題 | No.592 括弧の対応 (2) |
ユーザー | pluto77 |
提出日時 | 2017-11-12 14:51:34 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 7,068 KB |
実行使用メモリ | 13,052 KB |
最終ジャッジ日時 | 2024-05-03 19:30:31 |
合計ジャッジ時間 | 1,147 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
#yuki_592 N=int(raw_input()) S=raw_input() res=['' for i in xrange(N+1)] q=[] for i in xrange(N): if S[i]=='(': q.append(i) else: j=q.pop() res[i]=j res[j]=i for i in res: print int(res[i])+1