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