結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 29 ms
10,368 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 266 ms
19,596 KB
testcase_11 AC 81 ms
12,484 KB
testcase_12 AC 187 ms
16,108 KB
testcase_13 AC 58 ms
11,648 KB
testcase_14 AC 272 ms
20,332 KB
testcase_15 AC 234 ms
17,828 KB
testcase_16 AC 213 ms
17,244 KB
testcase_17 AC 264 ms
19,604 KB
testcase_18 AC 149 ms
14,808 KB
testcase_19 AC 251 ms
19,308 KB
testcase_20 AC 275 ms
19,004 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