結果

問題 No.279 木の数え上げ
ユーザー もぐら 3.0もぐら 3.0
提出日時 2023-11-14 14:13:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,120 KB
最終ジャッジ日時 2024-09-26 03:35:11
合計ジャッジ時間 2,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 177 ms
19,592 KB
testcase_11 AC 66 ms
12,228 KB
testcase_12 AC 134 ms
16,100 KB
testcase_13 AC 48 ms
11,648 KB
testcase_14 AC 196 ms
20,120 KB
testcase_15 AC 166 ms
17,828 KB
testcase_16 AC 150 ms
17,112 KB
testcase_17 AC 180 ms
19,476 KB
testcase_18 AC 110 ms
14,804 KB
testcase_19 AC 174 ms
19,172 KB
testcase_20 AC 186 ms
19,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
t_cnt=0
r_cnt=0
e_cnt=0

for s in S:
    if s=="t":
        t_cnt+=1
    elif s=="r":
        r_cnt+=1
    elif s=="e":
        e_cnt+=1

print(min(t_cnt,r_cnt,(e_cnt)//2))
0