結果

問題 No.22 括弧の対応
ユーザー papinianuspapinianus
提出日時 2016-06-02 16:46:04
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 2,332 ms
コンパイル使用メモリ 30,636 KB
実行使用メモリ 32,012 KB
最終ジャッジ日時 2024-07-20 07:13:41
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,992 KB
testcase_01 AC 38 ms
30,880 KB
testcase_02 AC 36 ms
30,972 KB
testcase_03 AC 39 ms
32,012 KB
testcase_04 AC 37 ms
31,248 KB
testcase_05 AC 37 ms
31,376 KB
testcase_06 AC 38 ms
31,500 KB
testcase_07 AC 38 ms
31,500 KB
testcase_08 AC 40 ms
31,500 KB
testcase_09 AC 38 ms
31,248 KB
testcase_10 AC 38 ms
31,500 KB
testcase_11 AC 37 ms
30,864 KB
testcase_12 AC 38 ms
31,120 KB
testcase_13 AC 37 ms
31,372 KB
testcase_14 AC 40 ms
30,864 KB
testcase_15 AC 44 ms
32,012 KB
testcase_16 AC 41 ms
31,952 KB
testcase_17 AC 37 ms
31,072 KB
testcase_18 AC 43 ms
30,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($len, $target) = explode(' ', trim(fgets(STDIN)));
$str = str_split(trim(fgets(STDIN)));
$lefts = [];
$structOfStr = [];
foreach($str as $i => $char) {
    if($char == '(') {
        array_push($lefts, $i);
    } else { // ')'
        $prevLeft = array_pop($lefts);
        $structOfStr[$i] = $prevLeft;
        $structOfStr[$prevLeft] = $i;
    }
}
echo ($structOfStr[$target-1]+1).PHP_EOL;
0