結果

問題 No.279 木の数え上げ
ユーザー gorugo30gorugo30
提出日時 2021-02-22 23:35:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 58,496 KB
最終ジャッジ日時 2024-09-21 18:57:40
合計ジャッジ時間 2,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,316 KB
testcase_01 AC 42 ms
52,276 KB
testcase_02 AC 42 ms
52,180 KB
testcase_03 AC 43 ms
52,700 KB
testcase_04 AC 41 ms
51,776 KB
testcase_05 AC 42 ms
51,744 KB
testcase_06 AC 42 ms
52,292 KB
testcase_07 AC 41 ms
53,560 KB
testcase_08 AC 42 ms
52,948 KB
testcase_09 AC 42 ms
52,788 KB
testcase_10 AC 46 ms
56,536 KB
testcase_11 AC 43 ms
53,448 KB
testcase_12 AC 45 ms
55,880 KB
testcase_13 AC 43 ms
53,236 KB
testcase_14 AC 46 ms
58,496 KB
testcase_15 AC 44 ms
55,920 KB
testcase_16 AC 42 ms
56,312 KB
testcase_17 AC 44 ms
57,256 KB
testcase_18 AC 41 ms
55,480 KB
testcase_19 AC 44 ms
56,936 KB
testcase_20 AC 45 ms
57,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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