結果
問題 | No.592 括弧の対応 (2) |
ユーザー | takeya_okino |
提出日時 | 2017-11-11 20:16:31 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 2,020 ms |
コンパイル使用メモリ | 75,008 KB |
実行使用メモリ | 47,996 KB |
最終ジャッジ日時 | 2024-05-03 16:47:31 |
合計ジャッジ時間 | 3,438 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String s = sc.next(); Stack<Integer> stack = new Stack<Integer>(); int[] cor = new int[n]; for(int i = 0; i < n; i++) { char c = s.charAt(i); if(c == '(') { stack.push(i + 1); } else { int pos = stack.pop(); cor[pos] = i + 1; cor[i + 1] = pos; } } for(int i = 0; i < n; i++) { System.out.println(cor[i]); } } }