結果

問題 No.592 括弧の対応 (2)
ユーザー takeya_okinotakeya_okino
提出日時 2017-11-11 20:19:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,056 ms / 5,000 ms
コード長 554 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 58,504 KB
最終ジャッジ日時 2024-11-24 19:27:58
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,368 KB
testcase_01 AC 1,044 ms
58,504 KB
testcase_02 AC 923 ms
53,516 KB
testcase_03 AC 1,056 ms
57,768 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