結果

問題 No.592 括弧の対応 (2)
ユーザー takeya_okinotakeya_okino
提出日時 2017-11-11 20:19:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,032 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 58,592 KB
最終ジャッジ日時 2024-05-03 16:47:41
合計ジャッジ時間 5,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,296 KB
testcase_01 AC 1,032 ms
58,560 KB
testcase_02 AC 1,029 ms
58,592 KB
testcase_03 AC 794 ms
57,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 - 1] = i + 1;
        cor[i] = pos; 
      }
    }
    for(int i = 0; i < n; i++) {
      System.out.println(cor[i]);
    }
  }
}
0