結果

問題 No.279 木の数え上げ
ユーザー daku9640daku9640
提出日時 2018-03-18 00:14:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 10,512 KB
実行使用メモリ 10,996 KB
最終ジャッジ日時 2023-08-25 17:10:14
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,364 KB
testcase_01 AC 18 ms
8,384 KB
testcase_02 AC 18 ms
8,352 KB
testcase_03 AC 18 ms
8,340 KB
testcase_04 AC 18 ms
8,336 KB
testcase_05 AC 18 ms
8,412 KB
testcase_06 AC 18 ms
8,364 KB
testcase_07 AC 18 ms
8,352 KB
testcase_08 AC 18 ms
8,284 KB
testcase_09 AC 18 ms
8,360 KB
testcase_10 AC 98 ms
10,996 KB
testcase_11 AC 34 ms
8,620 KB
testcase_12 AC 65 ms
9,956 KB
testcase_13 AC 27 ms
8,508 KB
testcase_14 AC 94 ms
10,972 KB
testcase_15 AC 79 ms
10,040 KB
testcase_16 AC 75 ms
9,828 KB
testcase_17 AC 88 ms
10,144 KB
testcase_18 AC 55 ms
9,312 KB
testcase_19 AC 86 ms
10,672 KB
testcase_20 AC 92 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
m = Counter(input())
print(min(m["t"], m["r"], m["e"] // 2))
0