結果

問題 No.279 木の数え上げ
ユーザー convexineqconvexineq
提出日時 2021-02-24 04:08:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 81,640 KB
実行使用メモリ 57,164 KB
最終ジャッジ日時 2023-10-24 06:15:42
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,164 KB
testcase_01 AC 37 ms
53,164 KB
testcase_02 AC 37 ms
53,164 KB
testcase_03 AC 37 ms
53,164 KB
testcase_04 AC 39 ms
53,164 KB
testcase_05 AC 39 ms
53,164 KB
testcase_06 AC 40 ms
53,164 KB
testcase_07 AC 39 ms
53,164 KB
testcase_08 AC 38 ms
53,164 KB
testcase_09 AC 39 ms
53,164 KB
testcase_10 AC 44 ms
57,028 KB
testcase_11 AC 38 ms
53,548 KB
testcase_12 AC 44 ms
56,444 KB
testcase_13 AC 41 ms
53,164 KB
testcase_14 AC 47 ms
57,164 KB
testcase_15 AC 46 ms
56,820 KB
testcase_16 AC 46 ms
56,676 KB
testcase_17 AC 45 ms
57,036 KB
testcase_18 AC 40 ms
54,100 KB
testcase_19 AC 45 ms
56,988 KB
testcase_20 AC 44 ms
57,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
print(min(s.count("t"),s.count("r"),s.count("e")//2))
0