結果

問題 No.592 括弧の対応 (2)
ユーザー te-shte-sh
提出日時 2017-11-10 22:43:05
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 97,324 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 22:25:08
合計ジャッジ時間 1,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(9): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!int;
  auto s = readln.chomp;

  auto a = 0, d = new int[](n), e = new int[](n);
  foreach (int i, c; s) {
    if (c == '(') {
      ++a;
      e[a] = i;
    } else {
      d[i] = e[a];
      d[e[a]] = i;
      --a;
    }
  }
  foreach (di; d) writeln(di+1);
}
0