結果
問題 | No.22 括弧の対応 |
ユーザー | michiru |
提出日時 | 2019-12-02 22:11:54 |
言語 | PHP (8.3.4) |
結果 |
OLE
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 2,681 ms |
コンパイル使用メモリ | 31,032 KB |
実行使用メモリ | 30,864 KB |
最終ジャッジ日時 | 2024-05-03 19:30:27 |
合計ジャッジ時間 | 15,580 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?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";