結果

問題 No.279 木の数え上げ
ユーザー papinianuspapinianus
提出日時 2016-06-20 12:29:58
言語 PHP
(8.3.4)
結果
MLE  
実行時間 -
コード長 236 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 30,900 KB
実行使用メモリ 78,348 KB
最終ジャッジ日時 2024-10-11 05:26:29
合計ジャッジ時間 2,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,844 KB
testcase_01 AC 42 ms
31,220 KB
testcase_02 AC 42 ms
31,164 KB
testcase_03 AC 41 ms
30,760 KB
testcase_04 AC 42 ms
30,904 KB
testcase_05 AC 41 ms
30,956 KB
testcase_06 AC 42 ms
31,096 KB
testcase_07 AC 41 ms
30,956 KB
testcase_08 AC 42 ms
31,196 KB
testcase_09 AC 43 ms
31,064 KB
testcase_10 MLE -
testcase_11 AC 58 ms
40,148 KB
testcase_12 AC 88 ms
60,684 KB
testcase_13 AC 50 ms
35,724 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 77 ms
53,520 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$strs = str_split(trim(fgets(STDIN)));
$strs = array_count_values($strs);
$ts = isset($strs['t'])? $strs['t']:0;
$rs = isset($strs['r'])? $strs['r']:0;
$es = isset($strs['e'])? (int)($strs['e']/2):0;
echo min($ts,$rs,$es).PHP_EOL;
0