結果

問題 No.279 木の数え上げ
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-18 07:29:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 57,148 KB
最終ジャッジ日時 2023-10-19 04:03:34
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,148 KB
testcase_01 AC 39 ms
53,148 KB
testcase_02 AC 38 ms
53,148 KB
testcase_03 AC 39 ms
53,148 KB
testcase_04 AC 39 ms
53,148 KB
testcase_05 AC 39 ms
53,148 KB
testcase_06 AC 38 ms
53,148 KB
testcase_07 AC 38 ms
53,148 KB
testcase_08 AC 40 ms
53,148 KB
testcase_09 AC 38 ms
53,148 KB
testcase_10 AC 46 ms
57,012 KB
testcase_11 AC 39 ms
53,532 KB
testcase_12 AC 44 ms
56,428 KB
testcase_13 AC 39 ms
53,148 KB
testcase_14 AC 45 ms
57,148 KB
testcase_15 AC 43 ms
56,804 KB
testcase_16 AC 44 ms
56,660 KB
testcase_17 AC 44 ms
57,020 KB
testcase_18 AC 41 ms
54,084 KB
testcase_19 AC 45 ms
56,972 KB
testcase_20 AC 45 ms
57,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
print(min(S.count("t"),S.count("r"),S.count("e")//2))
0