結果

問題 No.279 木の数え上げ
ユーザー kkkk
提出日時 2015-09-22 14:57:41
言語 PHP
(8.3.4)
結果
MLE  
実行時間 -
コード長 520 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 78,224 KB
最終ジャッジ日時 2024-07-19 08:37:23
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,980 KB
testcase_01 AC 41 ms
31,104 KB
testcase_02 AC 40 ms
31,384 KB
testcase_03 AC 38 ms
31,228 KB
testcase_04 AC 39 ms
31,224 KB
testcase_05 AC 37 ms
31,132 KB
testcase_06 AC 38 ms
31,500 KB
testcase_07 AC 38 ms
31,228 KB
testcase_08 AC 39 ms
31,408 KB
testcase_09 AC 37 ms
31,384 KB
testcase_10 MLE -
testcase_11 AC 57 ms
40,336 KB
testcase_12 AC 102 ms
60,428 KB
testcase_13 AC 51 ms
35,980 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 90 ms
53,516 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

// your code goes here

$S = str_split(trim(fgets(STDIN)));
$str_arr = array();

for ($s=0; $s<count($S); $s++){
  if (empty($str_arr[$S[$s]])){
    $str_arr[$S[$s]] = 1;
  }else{
  	$str_arr[$S[$s]]++;
  }
}

$min = 0;

if (isset($str_arr['r']) && isset($str_arr['t'])){
	if ($str_arr['r']>=$str_arr['t']){
		$min = $str_arr["t"];
	}else{
		$min = $str_arr["r"];
	}
}else{
	$min = 0;
}

$e_min = floor( $str_arr['e'] / 2 );

$ans = 0;

if ($min>=$e_min){
	$ans = $e_min;
}else{
	$ans = $min;
}

echo $ans . "\n";
0