結果
問題 | No.592 括弧の対応 (2) |
ユーザー | htensai |
提出日時 | 2019-11-14 18:22:29 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 337 ms / 5,000 ms |
コード長 | 671 bytes |
コンパイル時間 | 2,008 ms |
コンパイル使用メモリ | 85,400 KB |
実行使用メモリ | 55,372 KB |
最終ジャッジ日時 | 2024-09-21 21:27:07 |
合計ジャッジ時間 | 4,129 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
40,516 KB |
testcase_01 | AC | 317 ms
53,308 KB |
testcase_02 | AC | 337 ms
55,372 KB |
testcase_03 | AC | 296 ms
47,904 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); char[] arr = sc.next().toCharArray(); HashMap<Integer, Integer> map = new HashMap<>(); int level = 0; int[] ans = new int[n]; for (int i = 0; i < n; i++) { if (arr[i] == '(') { level++; map.put(level, i); } else { int idx = map.get(level); ans[idx] = i + 1; ans[i] = idx + 1; level--; } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(ans[i]).append("\n"); } System.out.print(sb); } }