結果

問題 No.22 括弧の対応
ユーザー beatdjambeatdjam
提出日時 2016-09-29 15:50:23
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 789 bytes
コンパイル時間 952 ms
コンパイル使用メモリ 31,024 KB
実行使用メモリ 31,216 KB
最終ジャッジ日時 2024-07-20 07:16:51
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,816 KB
testcase_01 AC 37 ms
30,776 KB
testcase_02 AC 38 ms
30,700 KB
testcase_03 AC 37 ms
30,792 KB
testcase_04 AC 37 ms
30,828 KB
testcase_05 AC 38 ms
31,216 KB
testcase_06 AC 36 ms
30,868 KB
testcase_07 AC 37 ms
30,992 KB
testcase_08 AC 38 ms
30,988 KB
testcase_09 AC 37 ms
30,836 KB
testcase_10 AC 41 ms
30,908 KB
testcase_11 AC 41 ms
31,016 KB
testcase_12 AC 39 ms
30,860 KB
testcase_13 AC 38 ms
30,860 KB
testcase_14 AC 38 ms
30,880 KB
testcase_15 AC 38 ms
30,992 KB
testcase_16 AC 37 ms
31,144 KB
testcase_17 AC 39 ms
30,832 KB
testcase_18 AC 38 ms
30,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input_lines = trim(fgets(STDIN));
$input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
do {
    $tmpStr[] = $input_lines;
    $input_lines = trim(fgets(STDIN));
    $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
} while ($input_lines !== "");

$tmp = $tmpStr[1];
$tmpPos = explode(" ",$tmpStr[0])[1];
$s = str_split($tmp);

$tmpCnt = 0;
if($s[$tmpPos - 1] === "("){
	$max = count($s);
	
	for($i = $tmpPos - 1;$i < $max ;$i++){
		$tmpCnt += getCountVal($s[$i]);
		
		if($tmpCnt === 0){
			break;
		}
	}
}else{
	for($i = $tmpPos - 1;$i >= 0 ;$i--){
		$tmpCnt += getCountVal($s[$i]);
		
		if($tmpCnt === 0){
			break;
		}
	}
}

print $i + 1;

function getCountVal($i_string){
		if($i_string === "("){
			return 1;
		}else{
			return -1;
		}
}
0