結果

問題 No.279 木の数え上げ
ユーザー あかりきあかりき
提出日時 2021-05-24 06:26:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,376 KB
最終ジャッジ日時 2024-04-20 16:30:05
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,368 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 264 ms
19,468 KB
testcase_11 AC 80 ms
12,512 KB
testcase_12 AC 189 ms
16,240 KB
testcase_13 AC 59 ms
11,648 KB
testcase_14 AC 278 ms
20,376 KB
testcase_15 AC 234 ms
17,828 KB
testcase_16 AC 213 ms
17,120 KB
testcase_17 AC 262 ms
19,608 KB
testcase_18 AC 150 ms
14,932 KB
testcase_19 AC 258 ms
19,432 KB
testcase_20 AC 269 ms
19,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
ct=[0]*3
for i in range(len(s)):
  if s[i]=='t':
    ct[0]+=1
  elif s[i]=='r':
    ct[1]+=1
  elif s[i]=='e':
    ct[2]+=1
print(min(ct[0],ct[1],ct[2]//2))
0