結果

問題 No.279 木の数え上げ
ユーザー ABKZABKZ
提出日時 2021-06-20 21:30:44
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 206 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 77,384 KB
最終ジャッジ日時 2024-06-22 22:36:06
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 35 ms
52,036 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 35 ms
52,224 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 = input()

d = dict(t=0, r=0, e=0)

for c in S:
    if c == "t":
        d["t"] += 1
    elif c == "r":
        d["r"] += 1
    elif c == "e":
        d["e"] += 1

print(min(d["t"], d["r"], d["e"] // 2))
0