結果

問題 No.279 木の数え上げ
ユーザー benben
提出日時 2015-11-24 21:35:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-10-14 15:21:01
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,704 KB
testcase_01 AC 42 ms
30,868 KB
testcase_02 AC 41 ms
30,820 KB
testcase_03 AC 41 ms
31,120 KB
testcase_04 AC 43 ms
31,232 KB
testcase_05 AC 41 ms
31,032 KB
testcase_06 AC 42 ms
30,844 KB
testcase_07 AC 41 ms
31,232 KB
testcase_08 AC 42 ms
30,984 KB
testcase_09 AC 42 ms
31,064 KB
testcase_10 AC 45 ms
32,268 KB
testcase_11 AC 43 ms
31,084 KB
testcase_12 AC 44 ms
31,756 KB
testcase_13 AC 43 ms
30,976 KB
testcase_14 AC 46 ms
32,524 KB
testcase_15 AC 46 ms
32,012 KB
testcase_16 AC 45 ms
32,016 KB
testcase_17 AC 47 ms
32,656 KB
testcase_18 AC 44 ms
31,500 KB
testcase_19 AC 45 ms
32,396 KB
testcase_20 AC 46 ms
32,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, "%s", $input);

$t = substr_count($input, "t");
$r = substr_count($input, "r");
$e = substr_count($input, "e");

$res = min($t, $r, (int)($e/2));

echo $res;
echo "\n";

0