結果

問題 No.279 木の数え上げ
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 21:23:35
言語 PHP
(8.3.4)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 32,528 KB
実行使用メモリ 34,620 KB
最終ジャッジ日時 2024-10-07 21:54:53
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
32,272 KB
testcase_01 AC 45 ms
32,404 KB
testcase_02 AC 42 ms
32,404 KB
testcase_03 AC 43 ms
32,528 KB
testcase_04 AC 43 ms
32,272 KB
testcase_05 AC 42 ms
32,400 KB
testcase_06 AC 43 ms
32,532 KB
testcase_07 AC 47 ms
32,400 KB
testcase_08 AC 42 ms
32,272 KB
testcase_09 AC 42 ms
32,144 KB
testcase_10 AC 98 ms
34,364 KB
testcase_11 AC 57 ms
32,404 KB
testcase_12 AC 80 ms
32,400 KB
testcase_13 AC 49 ms
32,276 KB
testcase_14 AC 104 ms
34,620 KB
testcase_15 AC 91 ms
34,492 KB
testcase_16 AC 87 ms
34,492 KB
testcase_17 AC 98 ms
34,488 KB
testcase_18 AC 70 ms
32,528 KB
testcase_19 AC 96 ms
34,492 KB
testcase_20 AC 101 ms
34,364 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$S = trim(fgets(STDIN));
$t = 0;
$r = 0;
$e = 0;
for($i = 0; $i < strlen($S); $i++) {
  $n = substr($S, $i, 1);
  if($n == 't') $t++;
  if($n == 'r') $r++;
  if($n == 'e') $e++;
}
print(min($t, min($r, intdiv($e, 2))));
?>
0