結果

問題 No.279 木の数え上げ
ユーザー shobonvipshobonvip
提出日時 2020-03-30 23:45:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 88 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 10,676 KB
実行使用メモリ 11,124 KB
最終ジャッジ日時 2023-09-05 11:32:57
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,312 KB
testcase_01 AC 18 ms
8,292 KB
testcase_02 AC 18 ms
8,228 KB
testcase_03 AC 19 ms
8,224 KB
testcase_04 AC 19 ms
8,388 KB
testcase_05 AC 18 ms
8,444 KB
testcase_06 AC 19 ms
8,276 KB
testcase_07 AC 18 ms
8,460 KB
testcase_08 AC 19 ms
8,448 KB
testcase_09 AC 19 ms
8,448 KB
testcase_10 AC 90 ms
11,124 KB
testcase_11 AC 34 ms
8,780 KB
testcase_12 AC 66 ms
10,024 KB
testcase_13 AC 27 ms
8,452 KB
testcase_14 AC 92 ms
10,860 KB
testcase_15 AC 81 ms
10,112 KB
testcase_16 AC 76 ms
9,880 KB
testcase_17 AC 92 ms
10,076 KB
testcase_18 AC 54 ms
9,364 KB
testcase_19 AC 85 ms
10,656 KB
testcase_20 AC 96 ms
10,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s=Counter(input())
print(min([s["e"]//2,s["r"],s["t"]]))
0