結果
問題 | No.592 括弧の対応 (2) |
ユーザー | Tsuneo Yoshioka |
提出日時 | 2017-11-10 23:29:34 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 324 ms / 5,000 ms |
コード長 | 222 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-11-24 15:36:51 |
合計ジャッジ時間 | 1,812 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 3 |
コンパイルメッセージ
Syntax OK
ソースコード
N=gets.to_i st=[] corr=[] gets.chomp.each_char.with_index{|c, i| if c=='(' st.push(i) else j = st.pop() corr[j] = i; corr[i] = j; end } corr.each_with_index{|v, i| puts v+1 }