結果

問題 No.279 木の数え上げ
ユーザー yumechiyumechi
提出日時 2015-09-23 06:04:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 120 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 123,012 KB
最終ジャッジ日時 2024-07-19 08:46:05
合計ジャッジ時間 2,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,068 KB
testcase_01 AC 37 ms
53,060 KB
testcase_02 AC 34 ms
53,496 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 33 ms
51,748 KB
testcase_05 AC 35 ms
53,156 KB
testcase_06 AC 37 ms
51,956 KB
testcase_07 AC 38 ms
53,556 KB
testcase_08 AC 39 ms
52,148 KB
testcase_09 AC 33 ms
53,004 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {"t":0, "r":0, "e":0}
for c in list(input()):
    if c in d:
        d[c] += 1
print(min(d["t"], d["r"], d["e"]//2))
0