結果

問題 No.279 木の数え上げ
ユーザー kawacchukawacchu
提出日時 2019-03-17 18:42:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 9,860 KB
最終ジャッジ日時 2023-09-21 20:08:26
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,708 KB
testcase_01 AC 14 ms
7,796 KB
testcase_02 AC 15 ms
7,784 KB
testcase_03 AC 15 ms
7,852 KB
testcase_04 AC 15 ms
7,896 KB
testcase_05 AC 15 ms
7,756 KB
testcase_06 AC 15 ms
7,776 KB
testcase_07 AC 15 ms
7,840 KB
testcase_08 AC 15 ms
7,784 KB
testcase_09 AC 15 ms
7,752 KB
testcase_10 AC 121 ms
9,612 KB
testcase_11 AC 38 ms
8,236 KB
testcase_12 AC 86 ms
9,128 KB
testcase_13 AC 28 ms
8,140 KB
testcase_14 AC 132 ms
9,860 KB
testcase_15 AC 110 ms
9,696 KB
testcase_16 AC 99 ms
9,372 KB
testcase_17 AC 124 ms
9,748 KB
testcase_18 AC 69 ms
8,888 KB
testcase_19 AC 120 ms
9,692 KB
testcase_20 AC 126 ms
9,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

D = {
    "t":0,
    "r":0,
    "e":0
    }
for s in S :
    if s in D :
        D[s] += 1
D["e"] //= 2
print(min(D.values()))

0