結果

問題 No.279 木の数え上げ
ユーザー naoe123naoe123
提出日時 2020-01-12 12:08:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 10,580 KB
実行使用メモリ 9,920 KB
最終ジャッジ日時 2023-08-19 02:16:44
合計ジャッジ時間 2,650 ms
ジャッジサーバーID
(参考情報)
judge15 / judge9
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,916 KB
testcase_01 AC 12 ms
7,748 KB
testcase_02 AC 12 ms
7,776 KB
testcase_03 AC 13 ms
7,688 KB
testcase_04 AC 14 ms
7,832 KB
testcase_05 AC 14 ms
7,824 KB
testcase_06 AC 12 ms
7,912 KB
testcase_07 AC 12 ms
7,820 KB
testcase_08 AC 12 ms
7,764 KB
testcase_09 AC 12 ms
7,764 KB
testcase_10 AC 17 ms
9,616 KB
testcase_11 AC 13 ms
8,236 KB
testcase_12 AC 15 ms
9,160 KB
testcase_13 AC 13 ms
8,176 KB
testcase_14 AC 17 ms
9,804 KB
testcase_15 AC 18 ms
9,612 KB
testcase_16 AC 17 ms
9,308 KB
testcase_17 AC 18 ms
9,692 KB
testcase_18 AC 16 ms
8,784 KB
testcase_19 AC 16 ms
9,648 KB
testcase_20 AC 18 ms
9,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

t_cnt=S.count('t')
r_cnt=S.count('r')
e_cnt=S.count('e')//2

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