結果

問題 No.279 木の数え上げ
ユーザー nebukuro09nebukuro09
提出日時 2016-09-09 10:29:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-11-15 22:57:17
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,820 KB
testcase_01 AC 13 ms
6,820 KB
testcase_02 AC 13 ms
6,820 KB
testcase_03 AC 13 ms
6,816 KB
testcase_04 AC 12 ms
6,820 KB
testcase_05 AC 13 ms
6,816 KB
testcase_06 AC 13 ms
6,820 KB
testcase_07 AC 12 ms
6,816 KB
testcase_08 AC 12 ms
6,816 KB
testcase_09 AC 12 ms
6,816 KB
testcase_10 AC 242 ms
7,552 KB
testcase_11 AC 63 ms
6,816 KB
testcase_12 AC 169 ms
7,296 KB
testcase_13 AC 41 ms
6,816 KB
testcase_14 AC 261 ms
7,552 KB
testcase_15 AC 219 ms
7,552 KB
testcase_16 AC 200 ms
7,296 KB
testcase_17 AC 245 ms
7,424 KB
testcase_18 AC 132 ms
7,168 KB
testcase_19 AC 239 ms
7,424 KB
testcase_20 AC 255 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
c = Counter(raw_input())
print min(c['t'], c['r'], c['e']/2)
0