結果

問題 No.279 木の数え上げ
ユーザー hir355
提出日時 2020-11-20 22:57:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 57,916 KB
最終ジャッジ日時 2024-07-23 13:37:05
合計ジャッジ時間 2,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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