結果

問題 No.279 木の数え上げ
ユーザー lloyzlloyz
提出日時 2023-12-27 22:23:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,160 KB
最終ジャッジ日時 2024-09-27 15:35:41
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,368 KB
testcase_05 AC 31 ms
10,368 KB
testcase_06 AC 32 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 121 ms
19,308 KB
testcase_11 AC 52 ms
12,288 KB
testcase_12 AC 94 ms
15,976 KB
testcase_13 AC 43 ms
11,520 KB
testcase_14 AC 129 ms
20,160 KB
testcase_15 AC 117 ms
17,828 KB
testcase_16 AC 106 ms
17,152 KB
testcase_17 AC 121 ms
19,460 KB
testcase_18 AC 79 ms
14,912 KB
testcase_19 AC 117 ms
19,080 KB
testcase_20 AC 126 ms
19,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

counter = Counter(list(input()))
ans = 10**6
ans = min(ans, counter['t'], counter['r'], counter['e'] // 2)
print(ans)
0