結果

問題 No.592 括弧の対応 (2)
ユーザー nebukuro09nebukuro09
提出日時 2017-11-10 22:23:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 458 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 115,488 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 22:22:43
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 458 ms
6,944 KB
testcase_02 AC 61 ms
6,944 KB
testcase_03 AC 75 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;


void main() {
    auto N = readln.chomp.to!int;
    auto S = readln.chomp;

    auto ans = new int[](N);
    int[] stack;

    foreach (i; 0..N) {
        if (S[i] == '(')
            stack ~= i;
        else {
            ans[i] = stack.back + 1;
            ans[stack.back] = i + 1;
            stack.popBack;
        }
    }

    ans.each!writeln;
}
0