結果

問題 No.22 括弧の対応
ユーザー ねずねず
提出日時 2018-01-28 22:53:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 516 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 30,692 KB
実行使用メモリ 31,528 KB
最終ジャッジ日時 2024-07-20 07:29:01
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
31,296 KB
testcase_01 AC 48 ms
31,348 KB
testcase_02 AC 48 ms
31,084 KB
testcase_03 AC 189 ms
31,100 KB
testcase_04 AC 77 ms
31,528 KB
testcase_05 AC 68 ms
30,992 KB
testcase_06 AC 212 ms
30,948 KB
testcase_07 AC 74 ms
30,952 KB
testcase_08 AC 47 ms
30,960 KB
testcase_09 AC 195 ms
31,264 KB
testcase_10 AC 51 ms
31,128 KB
testcase_11 AC 64 ms
31,296 KB
testcase_12 AC 146 ms
31,152 KB
testcase_13 AC 516 ms
31,112 KB
testcase_14 AC 46 ms
31,128 KB
testcase_15 AC 136 ms
31,240 KB
testcase_16 AC 217 ms
31,228 KB
testcase_17 AC 42 ms
31,136 KB
testcase_18 AC 43 ms
31,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
function deleteBrackets (&$s, $len) {
	$left = -1;
	for ($i = 0; $i < $len; $i++) {
		if ($s[$i] == '-') continue;
		if ($left == -1) {
			if ($s[$i] == '(') $left = $i;
			continue;
		}
		if ($s[$i] == '(') {
			$left = $i;
		} else {
			$s[$left] = '-';
			$s[$i] = '-';
			return array($left + 1, $i + 1);
		}
	}
}
list($n, $k) = explode(' ', trim(fgets(STDIN)));
$s = trim(fgets(STDIN));
while (true) {
	$res = deleteBrackets($s, $n);
	if ($res[0] == $k || $res[1] == $k) {
		echo $res[0] == $k ? $res[1] : $res[0];
		break;
	}
}
?>
0