結果

問題 No.279 木の数え上げ
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-08 19:54:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 11,760 KB
実行使用メモリ 11,896 KB
最終ジャッジ日時 2023-10-19 20:30:42
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,968 KB
testcase_01 AC 29 ms
9,964 KB
testcase_02 AC 30 ms
9,968 KB
testcase_03 AC 29 ms
9,964 KB
testcase_04 AC 28 ms
9,964 KB
testcase_05 AC 29 ms
9,968 KB
testcase_06 AC 28 ms
9,964 KB
testcase_07 AC 28 ms
9,964 KB
testcase_08 AC 30 ms
9,968 KB
testcase_09 AC 29 ms
9,964 KB
testcase_10 AC 445 ms
11,700 KB
testcase_11 AC 115 ms
10,336 KB
testcase_12 AC 312 ms
11,204 KB
testcase_13 AC 77 ms
10,116 KB
testcase_14 AC 486 ms
11,896 KB
testcase_15 AC 401 ms
11,652 KB
testcase_16 AC 348 ms
11,412 KB
testcase_17 AC 440 ms
11,780 KB
testcase_18 AC 240 ms
10,880 KB
testcase_19 AC 418 ms
11,740 KB
testcase_20 AC 479 ms
11,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = 0
r = 0
e = 0
for s in input():
    t += s == "t"
    r += s == "r"
    e += s == "e"
print(min(r, t, e>>1))
0