結果

問題 No.279 木の数え上げ
ユーザー yumechiyumechi
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,396 KB
testcase_01 AC 34 ms
52,616 KB
testcase_02 AC 35 ms
52,748 KB
testcase_03 AC 33 ms
52,188 KB
testcase_04 AC 32 ms
52,560 KB
testcase_05 AC 33 ms
53,112 KB
testcase_06 AC 34 ms
51,648 KB
testcase_07 AC 33 ms
52,756 KB
testcase_08 AC 32 ms
52,776 KB
testcase_09 AC 32 ms
52,148 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
0