結果

問題 No.22 括弧の対応
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-02 18:48:00
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 31,016 KB
実行使用メモリ 31,132 KB
最終ジャッジ日時 2024-07-20 06:59:52
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,752 KB
testcase_01 AC 36 ms
30,896 KB
testcase_02 AC 37 ms
30,732 KB
testcase_03 AC 35 ms
30,844 KB
testcase_04 AC 36 ms
30,836 KB
testcase_05 AC 35 ms
31,036 KB
testcase_06 AC 33 ms
31,112 KB
testcase_07 AC 34 ms
31,004 KB
testcase_08 AC 34 ms
30,824 KB
testcase_09 AC 34 ms
31,132 KB
testcase_10 AC 36 ms
30,928 KB
testcase_11 AC 38 ms
30,956 KB
testcase_12 AC 36 ms
31,012 KB
testcase_13 AC 36 ms
30,960 KB
testcase_14 AC 36 ms
30,820 KB
testcase_15 AC 36 ms
31,120 KB
testcase_16 AC 38 ms
30,868 KB
testcase_17 AC 35 ms
30,956 KB
testcase_18 AC 38 ms
31,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($length, $point) = explode(" ",trim(fgets(STDIN)));
$tree = 0;
$str = trim(fgets(STDIN));
if ( $str[$point-1] == '(' ) {
  $other = strlen(substr($str,0,$point-1));
  $str = substr($str,$point-1);
  for ( $index=0; $index<strlen($str); $index++ ) {
    if ( $str[$index] == '(' ) {
      ++$tree;
    }
    else {
      $tree--;
    }
    if ( $tree == 0 ) {
      echo $other + $index+1 . PHP_EOL;
      break;
    }
  }
}
else {
  $str = substr($str,0,$point);
  for ( $index=$point-1; $index>=0; $index-- ) {
    if ( $str[$index] == '(' ) {
      ++$tree;
    }
    else {
      $tree--;
    }
    if ( $tree == 0 ) {
      echo $index +1 . PHP_EOL;
      break;
    }
  }
}
0