結果
| 問題 | 
                            No.279 木の数え上げ
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2015-09-23 06:04:06 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                MLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 120 bytes | 
| コンパイル時間 | 235 ms | 
| コンパイル使用メモリ | 82,072 KB | 
| 実行使用メモリ | 123,012 KB | 
| 最終ジャッジ日時 | 2024-07-19 08:46:05 | 
| 合計ジャッジ時間 | 2,834 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 10 MLE * 11 | 
ソースコード
d = {"t":0, "r":0, "e":0}
for c in list(input()):
    if c in d:
        d[c] += 1
print(min(d["t"], d["r"], d["e"]//2))