結果

問題 No.279 木の数え上げ
ユーザー alcoholampalcoholamp
提出日時 2019-10-25 17:56:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,124 KB
最終ジャッジ日時 2024-07-20 17:41:56
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 31 ms
10,240 KB
testcase_03 AC 31 ms
10,240 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 153 ms
19,468 KB
testcase_11 AC 57 ms
12,228 KB
testcase_12 AC 114 ms
15,976 KB
testcase_13 AC 45 ms
11,648 KB
testcase_14 AC 159 ms
20,124 KB
testcase_15 AC 137 ms
17,828 KB
testcase_16 AC 130 ms
17,116 KB
testcase_17 AC 154 ms
19,484 KB
testcase_18 AC 95 ms
14,804 KB
testcase_19 AC 147 ms
19,304 KB
testcase_20 AC 158 ms
19,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Problem0279:
    def solve(this):
        res = {}
        for c in list(input()):
            res[c] = res.get(c, 0) + 1
        cnt = min(res.get('t', 0), res.get('r', 0), res.get('e', 0) // 2)
        print(cnt)

if __name__ == "__main__":
    problem = Problem0279()
    problem.solve()
0