結果

問題 No.22 括弧の対応
ユーザー michirumichiru
提出日時 2019-12-02 22:11:54
言語 PHP
(843.2)
結果
OLE  
実行時間 -
コード長 665 bytes
コンパイル時間 4,659 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 63,560 KB
最終ジャッジ日時 2024-11-24 23:13:22
合計ジャッジ時間 18,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 OLE -
testcase_01 AC 36 ms
31,240 KB
testcase_02 AC 37 ms
30,960 KB
testcase_03 AC 36 ms
31,288 KB
testcase_04 AC 36 ms
31,236 KB
testcase_05 AC 36 ms
31,460 KB
testcase_06 AC 38 ms
31,316 KB
testcase_07 WA -
testcase_08 AC 36 ms
31,380 KB
testcase_09 WA -
testcase_10 AC 36 ms
31,404 KB
testcase_11 AC 36 ms
30,908 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
31,120 KB
testcase_16 AC 39 ms
31,120 KB
testcase_17 AC 35 ms
30,808 KB
testcase_18 AC 35 ms
63,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $k) = explode(" ", (trim(fgets(STDIN))));
$s = str_split(trim(fgets(STDIN)));
$count = 1;
 // "("始まりで"次が("ならカウンタを+1,")"なら-1,0になったら対応箇所
if ($s[$k-1] == "(") {
    while ($count > 0) {
        $p = $s[$k++];
        if ($p == "(") {
            $count++;
        } elseif ($p == ")") {
            $count--;
        }
    }
 // ")"始まりなら上記のカウンタ増加を逆にしただけ
} elseif ($s[$k-1] == ")") {
    while ($count > 0) {
        $p = $s[$k++];
        if ($p == "(") {
            $count--;
        } elseif ($p == ")") {
            $count++;
        }
    }
}

echo $k."\n";
0