結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
Subaru314
|
| 提出日時 | 2021-03-20 01:23:58 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 23 ms / 2,000 ms |
| + 481µs | |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 53 ms |
| コンパイル使用メモリ | 15,232 KB |
| 実行使用メモリ | 13,824 KB |
| 最終ジャッジ日時 | 2026-09-26 12:36:33 |
| 合計ジャッジ時間 | 2,869 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
s = input()
t = s.count('t')
r = s.count('r')
e = s.count('e')
print(min(t,r,e//2))
Subaru314